From 65116af7fa74f64f0a7abcf8776eb7c2bc0b47a3 Mon Sep 17 00:00:00 2001 From: Nathan Stender Date: Sat, 18 Apr 2026 01:24:51 -0400 Subject: [PATCH 1/2] feat: Add Intelliflex v2.2 flat CSV format support Extends the SingleDatasetParser to handle the v2.2 Intelliflex export format which has 47 fixed columns (vs 7) and 11 metrics per analyte region (vs 3). Key changes: - Pattern-based analyte column detection (R##: RP# prefix) alongside the existing FIXED_INPUT_COLUMNS approach for backward compatibility - New metric words and section mappings: BACKGROUND, NET MEDIAN, NET NORMALIZED MEDIAN, REPLICATE %CV, ANALYTE NAME, REGION - Analyte columns renamed from region prefixes (R25: RP1) to real names (HPV6) using ANALYTE NAME metadata columns - REGION values used as bead identifiers in Units section - DILUTION column mapped to dilution factor setting - Per-well data (well type/status, acquisition times, event counts) captured in measurement custom info - Calibration, verification, and fluidics metadata from v2.2 header columns flows through to custom info - Intelliflex structure now passes header custom_info to metadata Co-Authored-By: Claude Opus 4.6 --- .../luminex_intelliflex_structure.py | 1 + .../parsers/luminex_xponent/constants.py | 7 + .../luminex_xponent/luminex_xponent_reader.py | 277 +- .../luminex_xponent_structure.py | 16 +- .../luminex_intelliflex_example_01.json | 11130 ++++----- .../luminex_intelliflex_single_dataset.json | 4904 ++-- .../testdata/luminex_intelliflex_v2_2.csv | 11 + .../testdata/luminex_intelliflex_v2_2.json | 20026 ++++++++++++++++ 8 files changed, 28311 insertions(+), 8061 deletions(-) create mode 100644 tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_v2_2.csv create mode 100644 tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_v2_2.json diff --git a/src/allotropy/parsers/luminex_intelliflex/luminex_intelliflex_structure.py b/src/allotropy/parsers/luminex_intelliflex/luminex_intelliflex_structure.py index 315320f33..1bc7973d9 100644 --- a/src/allotropy/parsers/luminex_intelliflex/luminex_intelliflex_structure.py +++ b/src/allotropy/parsers/luminex_intelliflex/luminex_intelliflex_structure.py @@ -24,4 +24,5 @@ def create_metadata( software_name=DEFAULT_SOFTWARE_NAME, software_version=header.software_version, device_type=DEFAULT_DEVICE_TYPE, + custom_info=header.custom_info, ) diff --git a/src/allotropy/parsers/luminex_xponent/constants.py b/src/allotropy/parsers/luminex_xponent/constants.py index 097dfc45b..225551e83 100644 --- a/src/allotropy/parsers/luminex_xponent/constants.py +++ b/src/allotropy/parsers/luminex_xponent/constants.py @@ -69,6 +69,8 @@ class StatisticSectionConfig: "Test Result": "(unitless)", "% Recovery": "(unitless)", "%CV of Replicates": "(unitless)", + "Background": "RFU", + "Net Normalized Median": "RFU", } # Known metric names in the columns of the single dataset results table @@ -95,6 +97,11 @@ class StatisticSectionConfig: "FACTOR", "SETTING", "UNITS", + "ANALYTE", + "NAME", + "REGION", + "BACKGROUND", + "REPLICATE", } # Allowed section names for Luminex Xponent reports. Any other name should raise an error upstream. diff --git a/src/allotropy/parsers/luminex_xponent/luminex_xponent_reader.py b/src/allotropy/parsers/luminex_xponent/luminex_xponent_reader.py index f498cebcd..78a3021b9 100644 --- a/src/allotropy/parsers/luminex_xponent/luminex_xponent_reader.py +++ b/src/allotropy/parsers/luminex_xponent/luminex_xponent_reader.py @@ -14,6 +14,9 @@ from allotropy.parsers.utils.pandas import read_csv from allotropy.parsers.utils.values import assert_not_none, try_float_or_none +# Pattern to detect analyte columns: "R: RP " +_ANALYTE_COLUMN_PATTERN = re.compile(r"^R\d+:\s+RP\d+\s+") + class LuminexXponentReader: SUPPORTED_EXTENSIONS = "csv" @@ -53,7 +56,9 @@ class SingleDatasetParser: and yield the same data structures expected by xPONENT-based downstream code. """ - # Columns that are always present in the single-dataset CSV export and are not analyte columns + # Columns that are always present in the single-dataset CSV export and are not analyte columns. + # Used as a minimum set for detection; any column NOT matching the analyte pattern + # (R: RP ) is also treated as a fixed column. FIXED_INPUT_COLUMNS: ClassVar[list[str]] = [ "INSTRUMENT TYPE", "SERIAL NUMBER", @@ -64,6 +69,18 @@ class SingleDatasetParser: "SAMPLE ID", ] + # Metrics that are informational per-analyte metadata, not numeric result sections. + # These are parsed but not turned into statistic/calculated-data sections. + ANALYTE_METADATA_METRICS: ClassVar[set[str]] = { + "ANALYTE NAME", + "REGION", + } + + @staticmethod + def is_analyte_column(col: str) -> bool: + """Return True if the column name matches the analyte column pattern R##: RP# ...""" + return bool(_ANALYTE_COLUMN_PATTERN.match(str(col).strip())) + @staticmethod def parse_header(col: str) -> tuple[str, str] | None: """Parse a column header into (analyte_label, metric_token). @@ -106,8 +123,17 @@ def parse_header(col: str) -> tuple[str, str] | None: def section_name_from_metric(metric_token: str) -> str: """Map raw metric tokens to xPONENT-style section names.""" token_upper = metric_token.upper().strip() - if token_upper.endswith("AVERAGE MFI"): - return "Avg Net MFI" + # Order matters: check longer/more-specific suffixes before shorter ones + metric_token_to_section: list[tuple[str, str]] = [ + ("AVERAGE MFI", "Avg Net MFI"), + ("REPLICATE %CV", "%CV of Replicates"), + ("NET NORMALIZED MEDIAN", "Net Normalized Median"), + ("NET MEDIAN", "Net MFI"), + ("%CV", "% CV"), + ] + for suffix, section in metric_token_to_section: + if token_upper.endswith(suffix): + return section # Title-case fallback for all other tokens return metric_token.title() @@ -142,16 +168,35 @@ def build_section( return None if metric_token == "COUNT": # noqa: S105 - analyte_cols = analyte_labels - # Convert each analyte column to numeric, coercing errors to 0.0 - # Use try_float_or_none for locale support, then fill None with 0.0 - converted = cast( - pd.DataFrame, - out[analyte_cols] - .apply(lambda col: col.apply(try_float_or_none)) - .fillna(0.0), - ) - out["Total Events"] = converted.sum(axis=1) + # Use TOTAL EVENTS column from the raw data if available (v2.2 format), + # otherwise sum analyte counts. + if "TOTAL EVENTS" in df.columns: + out["Total Events"] = df["TOTAL EVENTS"] + else: + analyte_cols = analyte_labels + # Convert each analyte column to numeric, coercing errors to 0.0 + # Use try_float_or_none for locale support, then fill None with 0.0 + converted = cast( + pd.DataFrame, + out[analyte_cols] + .apply(lambda col: col.apply(try_float_or_none)) + .fillna(0.0), + ) + out["Total Events"] = converted.sum(axis=1) + # Add extra per-well columns from the raw data if present (v2.2 format) + _per_well_extra_columns = [ + "WELL TYPE", + "WELL STATUS", + "WELL ACQUISITION START", + "WELL ACQUISITION END", + "TOTAL ACTIVE EVENTS", + "TOTAL CLASSIFIED EVENTS", + "TOTAL GATED EVENTS", + "COUNT %CV", + ] + for extra_col in _per_well_extra_columns: + if extra_col in df.columns: + out[extra_col] = df[extra_col].values else: out["Total Events"] = "" return out.set_index("Location") @@ -241,13 +286,29 @@ def parse( headers_map: dict[tuple[str, str], str] = {} metric_tokens_ordered: list[str] = [] seen_metric_tokens: set[str] = set() + analyte_metadata_map: dict[tuple[str, str], str] = {} + + # Detect whether the file uses the R##: RP# column prefix pattern (v2.2 format). + # If so, use pattern matching to detect analyte columns; otherwise, use the + # FIXED_INPUT_COLUMNS list as in the original format. + has_prefixed_columns = any(cls.is_analyte_column(str(c)) for c in df.columns) + for col in df.columns: - if col in cls.FIXED_INPUT_COLUMNS: + col_str = str(col) + # Skip non-analyte columns + if has_prefixed_columns: + if not cls.is_analyte_column(col_str): + continue + elif col_str in cls.FIXED_INPUT_COLUMNS: continue parsed = cls.parse_header(str(col)) if not parsed: continue analyte_label, metric = parsed + # Separate informational per-analyte metadata from result metrics + if metric.upper().strip() in cls.ANALYTE_METADATA_METRICS: + analyte_metadata_map[(analyte_label, metric.upper().strip())] = str(col) + continue headers_map[(analyte_label, metric)] = str(col) if ( metric.upper().strip().endswith("COUNT") @@ -269,6 +330,22 @@ def parse( cls.add_mandatory_columns(results, df, analyte_labels) + # If ANALYTE NAME columns are present (v2.2 format), rename analyte columns + # to real names and populate bead IDs from REGION data. + analyte_labels = cls._enrich_from_analyte_metadata( + results, df, analyte_labels, analyte_metadata_map + ) + + # Build the dilution factor section from the DILUTION column if present (v2.2 format) + if "DILUTION" in df.columns: + dilution_df = pd.DataFrame() + dilution_df["Location"] = [ + f"1(1,{w})" for w in df["WELL LOCATION"].astype(str) + ] + dilution_df["Sample"] = df["SAMPLE ID"].astype(str) + dilution_df["Dilution Factor"] = df["DILUTION"] + results["Dilution Factor"] = dilution_df.set_index("Location") + # Safely extract optional fields from the input DataFrame without mypy complaints _serial_series = ( df["SERIAL NUMBER"] if "SERIAL NUMBER" in df.columns else pd.Series([""]) @@ -279,42 +356,154 @@ def parse( ) _plate_value = str(_plate_series.iloc[0]) if len(_plate_series) > 0 else "" - header = ( - pd.DataFrame( - { - 0: [ - "Program", - "Build", - "Date", - "SN", - "ProtocolPlate", - "ComputerName", - "BatchStartTime", - ], - 1: [ - "xPONENT", - "Unknown", - "", - _serial_value, - "Name", - "", - _plate_value, - ], - 2: ["", "", "", "", "", "", ""], - 3: ["", "", "", "", "", "", ""], - 4: ["", "", "", "", cls._get_well_count(df), "", ""], - 5: ["", "", "", "", "", "", ""], - } - ) - .set_index(0) - .T - ) + header_rows = [ + "Program", + "Build", + "Date", + "SN", + "ProtocolPlate", + "ComputerName", + "BatchStartTime", + ] + header_vals = [ + "xPONENT", + "Unknown", + "", + _serial_value, + "Name", + "", + _plate_value, + ] + + # Append v2.2-specific fields to the synthesized header if present in the data + _v2_2_header_fields: list[tuple[str, str]] = [ + ("MODEL NAME", "ModelName"), + ("SOFTWARE VERSION", "Build"), + ("PROTOCOL NAME", "ProtocolName"), + ("PROTOCOL VERSION", "ProtocolVersion"), + ("PANEL NAME", "PanelName"), + ("BEAD TYPE", "BeadType"), + ("PLATE END", "BatchStopTime"), + ("PLATE STATUS", "PlateStatus"), + ("PLATE TYPE NAME", "PlateTypeName"), + ("UPTAKE VOLUME", "MaxSampleUptakeVolume"), + ("ACTIVE USER", "Operator"), + ("AUTHORIZED USER", "AuthorizedUser"), + ("CALIBRATION STATE", "CalibrationState"), + ("CALIBRATION LOT", "CalibrationLot"), + ("CALIBRATION LOT EXPIRATION", "CalibrationLotExpiration"), + ("CALIBRATION LOT EXPIRED", "CalibrationLotExpired"), + ("CALIBRATION TIMESTAMP", "CalibrationTimestamp"), + ("VERIFICATION STATE", "VerificationState"), + ("VERIFICATION LOT", "VerificationLot"), + ("VERIFICATION LOT EXPIRATION", "VerificationLotExpiration"), + ("VERIFICATION LOT EXPIRED", "VerificationLotExpired"), + ("VERIFICATION TIMESTAMP", "VerificationTimestamp"), + ("FLUIDICS VER STATE", "FluidicsVerState"), + ("FLUIDICS VER TIMESTAMP", "FluidicsVerTimestamp"), + ("FLUIDICS 1 VER LOT", "Fluidics1VerLot"), + ("FLUIDICS 1 VER LOT EXPIRATION", "Fluidics1VerLotExpiration"), + ("FLUIDICS 1 VER LOT EXPIRED", "Fluidics1VerLotExpired"), + ("FLUIDICS 2 VER LOT", "Fluidics2VerLot"), + ("FLUIDICS 2 VER LOT EXPIRATION", "Fluidics2VerLotExpiration"), + ("FLUIDICS 2 VER LOT EXPIRED", "Fluidics2VerLotExpired"), + ] + for csv_col, header_key in _v2_2_header_fields: + if csv_col in df.columns: + val = str(df[csv_col].iloc[0]) if len(df) > 0 else "" + # Override "Build" with SOFTWARE VERSION if we haven't already + if header_key == "Build" and "Build" in header_rows: + idx = header_rows.index("Build") + header_vals[idx] = val + continue + header_rows.append(header_key) + header_vals.append(val) + + n_cols = max(6, len(header_rows)) + header_dict: dict[int, list[object]] = { + 0: list(header_rows), + 1: list(header_vals), + } + for i in range(2, n_cols): + vals: list[object] = [""] * len(header_rows) + # Put well count at ProtocolPlate row, column 4 + if i == 4 and "ProtocolPlate" in header_rows: + pp_idx = header_rows.index("ProtocolPlate") + vals[pp_idx] = cls._get_well_count(df) + header_dict[i] = vals + + header = pd.DataFrame(header_dict).set_index(0).T calibration = pd.DataFrame() min_beads: float | None = None return results, header, calibration, min_beads + @classmethod + def _enrich_from_analyte_metadata( + cls, + results: dict[str, pd.DataFrame], + df: pd.DataFrame, + analyte_labels: list[str], + analyte_metadata_map: dict[tuple[str, str], str], + ) -> list[str]: + """If ANALYTE NAME and REGION columns exist, use them to: + 1. Rename analyte columns from region prefixes (R25: RP1) to real names (HPV6) + 2. Populate bead IDs (region numbers) in Units section + + Returns the updated analyte_labels (renamed if applicable). + """ + if not analyte_metadata_map: + return analyte_labels + + bead_ids: list[str] = [] + rename_map: dict[str, str] = {} + for label in analyte_labels: + name_col = analyte_metadata_map.get((label, "ANALYTE NAME")) + region_col = analyte_metadata_map.get((label, "REGION")) + # Get the first non-NaN analyte name + name_val = "" + if name_col and name_col in df.columns: + valid = df[name_col].dropna() + if len(valid) > 0: + name_val = str(valid.iloc[0]) + region_val = "" + if region_col and region_col in df.columns: + valid = df[region_col].dropna() + if len(valid) > 0: + raw = valid.iloc[0] + # Convert float-like ints (e.g. 25.0) to clean strings (e.g. "25") + region_val = ( + str(int(raw)) + if isinstance(raw, float) and raw == int(raw) + else str(raw) + ) + bead_ids.append(region_val if region_val else "N/A") + if name_val and name_val != label: + rename_map[label] = name_val + + # Rename analyte columns in all result sections + new_labels = [rename_map.get(label, label) for label in analyte_labels] + if rename_map: + for section_name, section_df in results.items(): + if section_name == "Units": + continue + results[section_name] = section_df.rename(columns=rename_map) + + # Rebuild Units section with real bead IDs + columns = ["Analyte:", *new_labels] + results["Units"] = pd.DataFrame( + [ + columns, + ["BeadID:", *bead_ids], + ["Units:", *[""] * len(new_labels)], + ], + index=["Analyte:", "BeadID:", "Units:"], + columns=columns, + ) + + return new_labels + class MultipleDatasetParser: @classmethod diff --git a/src/allotropy/parsers/luminex_xponent/luminex_xponent_structure.py b/src/allotropy/parsers/luminex_xponent/luminex_xponent_structure.py index 5452df4f2..e48caaa7c 100644 --- a/src/allotropy/parsers/luminex_xponent/luminex_xponent_structure.py +++ b/src/allotropy/parsers/luminex_xponent/luminex_xponent_structure.py @@ -218,8 +218,20 @@ def create( msg = f"Could not find 'Dilution Factor' data for: '{location}'." raise AllotropeConversionError(msg) - # Keys in the median data that are not analyte data. - metadata_keys = ["Sample", "Total Events"] + # Keys in the count data that are not analyte data. + metadata_keys = [ + "Sample", + "Total Events", + # Per-well extra columns added by v2.2 single-dataset parser + "WELL TYPE", + "WELL STATUS", + "WELL ACQUISITION START", + "WELL ACQUISITION END", + "TOTAL ACTIVE EVENTS", + "TOTAL CLASSIFIED EVENTS", + "TOTAL GATED EVENTS", + "COUNT %CV", + ] well_location, location_id = cls._get_location_details(location) dilution_factor_series = SeriesData(dilution_factor_data.loc[location]) diff --git a/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_example_01.json b/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_example_01.json index a64e9fa4d..dc2d3b06c 100644 --- a/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_example_01.json +++ b/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_example_01.json @@ -1,4941 +1,371 @@ { "$asm.manifest": "http://purl.allotrope.org/manifests/multi-analyte-profiling/BENCHLING/2024/09/multi-analyte-profiling.manifest", "multi analyte profiling aggregate document": { - "multi analyte profiling document": [ - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "multi analyte profiling analyzer", - "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", - "sample volume setting": { - "value": 50.0, - "unit": "μL" - }, - "dilution factor setting": { - "value": 1.0, - "unit": "(unitless)" - }, - "minimum assay bead count threshold setting": { - "value": 100, - "unit": "#" - }, - "custom information document": { - "ProtocolHeater": "Off", - "DDGate": "7000 to 17000", - "SampleTimeout": "50 sec", - "ProtocolAnalysis": "Off", - "ProtocolMicrosphere": "Map", - "PlateReadDirection": "Horizontal" - } - } - ] - }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_0", - "measurement time": "2024-10-18T11:36:00+00:00", - "sample document": { - "sample identifier": "Donor14_1", - "location identifier": "A1", - "custom information document": { - "PanelName": "Panel-12345678910 [v1]", - "BeadType": "MagPlex" - } - }, - "assay bead count": { - "value": 428.0, - "unit": "#" - }, - "analyte aggregate document": { - "analyte document": [ - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", - "analyte name": "6P_PBS_3_day2", - "assay bead identifier": "18", - "assay bead count": { - "value": 93.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 2616118.5, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 2287652.0, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 56.97413, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 2287651.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 2255550.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 855071.875, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 2255550.5, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_4", - "analyte name": "6P_PBS_1_day1", - "assay bead identifier": "19", - "assay bead count": { - "value": 73.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 2235084.25, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 2218420.75, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 135.32117, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 2218420.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 1771434.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 861481.0, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 1771435.0, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", - "analyte name": "JN1_PBS_3_day2", - "assay bead identifier": "29", - "assay bead count": { - "value": 50.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 1360043.75, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 1346596.25, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 31.93434, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 1346595.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 1330304.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 256534.6875, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 1330304.5, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_10", - "analyte name": "JN1_PBS_1_day1", - "assay bead identifier": "33", - "assay bead count": { - "value": 77.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 1344069.25, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 1187649.875, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 47.42143, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 1187649.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 1181347.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 476903.71875, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 1181347.75, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", - "analyte name": "Monitoring", - "assay bead identifier": "45", - "assay bead count": { - "value": 135.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 344950.34375, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 345674.1875, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 6.44802, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 345673.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 344903.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 15128.31445, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 344904.15625, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - } - ] - } - } - ], - "experimental data identifier": "BATCH_1", - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" - }, - "custom information document": { - "BatchStopTime": "2024-10-18 12:15" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "multi analyte profiling analyzer", - "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", - "sample volume setting": { - "value": 50.0, - "unit": "μL" - }, - "dilution factor setting": { - "value": 1.0, - "unit": "(unitless)" - }, - "minimum assay bead count threshold setting": { - "value": 100, - "unit": "#" - }, - "custom information document": { - "ProtocolHeater": "Off", - "DDGate": "7000 to 17000", - "SampleTimeout": "50 sec", - "ProtocolAnalysis": "Off", - "ProtocolMicrosphere": "Map", - "PlateReadDirection": "Horizontal" - } - } - ] - }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_16", - "measurement time": "2024-10-18T11:36:00+00:00", - "sample document": { - "sample identifier": "Donor14_2", - "location identifier": "A2", - "custom information document": { - "PanelName": "Panel-12345678910 [v1]", - "BeadType": "MagPlex" - } - }, - "assay bead count": { - "value": 279.0, - "unit": "#" - }, - "analyte aggregate document": { - "analyte document": [ - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_17", - "analyte name": "6P_PBS_3_day2", - "assay bead identifier": "18", - "assay bead count": { - "value": 53.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 2579802.0, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 1880649.75, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 62.5572, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 1880649.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 1893432.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 1105235.125, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 1893432.75, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_20", - "analyte name": "6P_PBS_1_day1", - "assay bead identifier": "19", - "assay bead count": { - "value": 54.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 2136240.0, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 1567692.0, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 60.8837, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 1567691.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 1585196.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 908836.375, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 1585196.625, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_23", - "analyte name": "JN1_PBS_3_day2", - "assay bead identifier": "29", - "assay bead count": { - "value": 55.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 841811.125, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 994082.875, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 82.10176, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 994082.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 865214.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 222376.375, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 865214.625, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_26", - "analyte name": "JN1_PBS_1_day1", - "assay bead identifier": "33", - "assay bead count": { - "value": 51.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 805213.375, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 679126.875, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 50.29792, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 679126.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 684090.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 299353.46875, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 684090.5625, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_29", - "analyte name": "Monitoring", - "assay bead identifier": "45", - "assay bead count": { - "value": 66.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 344115.375, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 345048.875, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 5.03744, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 345048.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 344155.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 12813.18457, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 344155.90625, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - } - ] - } - } - ], - "experimental data identifier": "BATCH_1", - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" - }, - "custom information document": { - "BatchStopTime": "2024-10-18 12:15" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "multi analyte profiling analyzer", - "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", - "sample volume setting": { - "value": 50.0, - "unit": "μL" - }, - "dilution factor setting": { - "value": 1.0, - "unit": "(unitless)" - }, - "minimum assay bead count threshold setting": { - "value": 100, - "unit": "#" - }, - "custom information document": { - "ProtocolHeater": "Off", - "DDGate": "7000 to 17000", - "SampleTimeout": "50 sec", - "ProtocolAnalysis": "Off", - "ProtocolMicrosphere": "Map", - "PlateReadDirection": "Horizontal" - } - } - ] - }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_32", - "measurement time": "2024-10-18T11:36:00+00:00", - "sample document": { - "sample identifier": "Donor14_3", - "location identifier": "A3", - "custom information document": { - "PanelName": "Panel-12345678910 [v1]", - "BeadType": "MagPlex" - } - }, - "assay bead count": { - "value": 323.0, - "unit": "#" - }, - "analyte aggregate document": { - "analyte document": [ - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_33", - "analyte name": "6P_PBS_3_day2", - "assay bead identifier": "18", - "assay bead count": { - "value": 66.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 1508152.0, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 1222728.875, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 58.7572, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 1222728.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 1231057.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 676261.25, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 1231058.5, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_36", - "analyte name": "6P_PBS_1_day1", - "assay bead identifier": "19", - "assay bead count": { - "value": 52.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 1459721.5, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 1264914.375, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 39.4568, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 1264914.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 1293854.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 412733.90625, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 1293854.625, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_39", - "analyte name": "JN1_PBS_3_day2", - "assay bead identifier": "29", - "assay bead count": { - "value": 50.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 307587.53125, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 304128.46875, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 31.35828, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 304127.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 304063.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 68959.875, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 304064.34375, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_42", - "analyte name": "JN1_PBS_1_day1", - "assay bead identifier": "33", - "assay bead count": { - "value": 72.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 316830.15625, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 284125.78125, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 67.42081, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 291475.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 271770.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 110970.28125, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 271770.53125, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_45", - "analyte name": "Monitoring", - "assay bead identifier": "45", - "assay bead count": { - "value": 83.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 348795.3125, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 348842.71875, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 5.96325, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 348842.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 348748.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 16361.125, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 348748.65625, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - } - ] - } - } - ], - "experimental data identifier": "BATCH_1", - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" - }, - "custom information document": { - "BatchStopTime": "2024-10-18 12:15" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "multi analyte profiling analyzer", - "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", - "sample volume setting": { - "value": 50.0, - "unit": "μL" - }, - "dilution factor setting": { - "value": 1.0, - "unit": "(unitless)" - }, - "minimum assay bead count threshold setting": { - "value": 100, - "unit": "#" - }, - "custom information document": { - "ProtocolHeater": "Off", - "DDGate": "7000 to 17000", - "SampleTimeout": "50 sec", - "ProtocolAnalysis": "Off", - "ProtocolMicrosphere": "Map", - "PlateReadDirection": "Horizontal" - } - } - ] - }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_48", - "measurement time": "2024-10-18T11:36:00+00:00", - "sample document": { - "sample identifier": "Donor14_4", - "location identifier": "A4", - "custom information document": { - "PanelName": "Panel-12345678910 [v1]", - "BeadType": "MagPlex" - } - }, - "assay bead count": { - "value": 417.0, - "unit": "#" - }, - "analyte aggregate document": { - "analyte document": [ - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", - "analyte name": "6P_PBS_3_day2", - "assay bead identifier": "18", - "assay bead count": { - "value": 75.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 574698.1875, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 547598.75, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 71.08538, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 569239.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 521810.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 263613.875, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 521811.0625, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_52", - "analyte name": "6P_PBS_1_day1", - "assay bead identifier": "19", - "assay bead count": { - "value": 71.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 577695.5, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 522776.25, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 58.64199, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 544674.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 514728.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 251477.35938, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 514728.5625, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", - "analyte name": "JN1_PBS_3_day2", - "assay bead identifier": "29", - "assay bead count": { - "value": 50.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 100115.53125, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 110496.78906, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 47.22391, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 114042.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 105532.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 28427.02148, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 105533.28906, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_58", - "analyte name": "JN1_PBS_1_day1", - "assay bead identifier": "33", - "assay bead count": { - "value": 89.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 88780.78125, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 85070.04688, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 63.86487, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 112043.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 105188.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 45747.93359, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 82327.25, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", - "analyte name": "Monitoring", - "assay bead identifier": "45", - "assay bead count": { - "value": 132.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 348822.59375, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 348996.5625, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 6.07236, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 348996.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 348250.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 15700.69531, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 348250.59375, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - } - ] - } - } - ], - "experimental data identifier": "BATCH_1", - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" - }, - "custom information document": { - "BatchStopTime": "2024-10-18 12:15" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "multi analyte profiling analyzer", - "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", - "sample volume setting": { - "value": 50.0, - "unit": "μL" - }, - "dilution factor setting": { - "value": 1.0, - "unit": "(unitless)" - }, - "minimum assay bead count threshold setting": { - "value": 100, - "unit": "#" - }, - "custom information document": { - "ProtocolHeater": "Off", - "DDGate": "7000 to 17000", - "SampleTimeout": "50 sec", - "ProtocolAnalysis": "Off", - "ProtocolMicrosphere": "Map", - "PlateReadDirection": "Horizontal" - } - } - ] - }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_64", - "measurement time": "2024-10-18T11:36:00+00:00", - "sample document": { - "sample identifier": "Donor14_5", - "location identifier": "A5", - "custom information document": { - "PanelName": "Panel-12345678910 [v1]", - "BeadType": "MagPlex" - } - }, - "assay bead count": { - "value": 390.0, - "unit": "#" - }, - "analyte aggregate document": { - "analyte document": [ - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_65", - "analyte name": "6P_PBS_3_day2", - "assay bead identifier": "18", - "assay bead count": { - "value": 33.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 292327.0625, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 303485.46875, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 86.12634, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 331412.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 272991.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 146162.59375, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 264678.15625, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_68", - "analyte name": "6P_PBS_1_day1", - "assay bead identifier": "19", - "assay bead count": { - "value": 21.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 284444.8125, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 471778.875, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 224.86909, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 548167.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 276092.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 139272.25, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 248782.90625, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_71", - "analyte name": "JN1_PBS_3_day2", - "assay bead identifier": "29", - "assay bead count": { - "value": 17.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 41783.16406, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 41152.84766, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 29.95466, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 45010.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 42599.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 7417.97803, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 40307.96094, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_74", - "analyte name": "JN1_PBS_1_day1", - "assay bead identifier": "33", - "assay bead count": { - "value": 17.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 36947.63672, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 42333.0, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 78.52621, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 62519.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 53051.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 23113.55859, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 38373.93359, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_77", - "analyte name": "Monitoring", - "assay bead identifier": "45", - "assay bead count": { - "value": 302.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 348420.46875, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 349551.28125, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 6.02085, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 349550.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 348445.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 13664.47852, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 348445.625, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - } - ] - } - } - ], - "experimental data identifier": "BATCH_1", - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" - }, - "custom information document": { - "BatchStopTime": "2024-10-18 12:15" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "multi analyte profiling analyzer", - "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", - "sample volume setting": { - "value": 50.0, - "unit": "μL" - }, - "dilution factor setting": { - "value": 1.0, - "unit": "(unitless)" - }, - "minimum assay bead count threshold setting": { - "value": 100, - "unit": "#" - }, - "custom information document": { - "ProtocolHeater": "Off", - "DDGate": "7000 to 17000", - "SampleTimeout": "50 sec", - "ProtocolAnalysis": "Off", - "ProtocolMicrosphere": "Map", - "PlateReadDirection": "Horizontal" - } - } - ] - }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_80", - "measurement time": "2024-10-18T11:36:00+00:00", - "sample document": { - "sample identifier": "Donor14_6", - "location identifier": "A6", - "custom information document": { - "PanelName": "Panel-12345678910 [v1]", - "BeadType": "MagPlex" - } - }, - "assay bead count": { - "value": 442.0, - "unit": "#" - }, - "analyte aggregate document": { - "analyte document": [ - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_81", - "analyte name": "6P_PBS_3_day2", - "assay bead identifier": "18", - "assay bead count": { - "value": 84.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 70685.69531, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 73905.8125, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 64.04994, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 95687.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 90650.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 41846.37891, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 72545.26562, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_84", - "analyte name": "6P_PBS_1_day1", - "assay bead identifier": "19", - "assay bead count": { - "value": 50.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 60939.72266, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 58201.54688, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 67.02922, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 79081.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 73661.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 33269.4375, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 56503.72656, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_87", - "analyte name": "JN1_PBS_3_day2", - "assay bead identifier": "29", - "assay bead count": { - "value": 52.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 11652.2832, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 13357.05273, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 88.72879, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 10118.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 10118.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 2976.23389, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 11760.73535, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_90", - "analyte name": "JN1_PBS_1_day1", - "assay bead identifier": "33", - "assay bead count": { - "value": 88.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 11673.08984, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 11229.52344, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 59.00506, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 13135.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 13135.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 5251.9541, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 10826.23535, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_93", - "analyte name": "Monitoring", - "assay bead identifier": "45", - "assay bead count": { - "value": 168.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 346890.25, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 347164.6875, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 5.26796, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 347164.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 347034.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 14557.70996, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 347034.78125, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - } - ] - } - } - ], - "experimental data identifier": "BATCH_1", - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" - }, - "custom information document": { - "BatchStopTime": "2024-10-18 12:15" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "multi analyte profiling analyzer", - "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", - "sample volume setting": { - "value": 50.0, - "unit": "μL" - }, - "dilution factor setting": { - "value": 1.0, - "unit": "(unitless)" - }, - "minimum assay bead count threshold setting": { - "value": 100, - "unit": "#" - }, - "custom information document": { - "ProtocolHeater": "Off", - "DDGate": "7000 to 17000", - "SampleTimeout": "50 sec", - "ProtocolAnalysis": "Off", - "ProtocolMicrosphere": "Map", - "PlateReadDirection": "Horizontal" - } - } - ] - }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_96", - "measurement time": "2024-10-18T11:36:00+00:00", - "sample document": { - "sample identifier": "Donor14_1", - "location identifier": "A7", - "custom information document": { - "PanelName": "Panel-12345678910 [v1]", - "BeadType": "MagPlex" - } - }, - "assay bead count": { - "value": 463.0, - "unit": "#" - }, - "analyte aggregate document": { - "analyte document": [ - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_97", - "analyte name": "6P_PBS_3_day2", - "assay bead identifier": "18", - "assay bead count": { - "value": 34.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 2626383.0, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 2498370.0, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 61.50818, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 2498369.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 2376340.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 913245.1875, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 2376341.25, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_100", - "analyte name": "6P_PBS_1_day1", - "assay bead identifier": "19", - "assay bead count": { - "value": 37.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 2331778.0, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 1969793.75, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 40.55054, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 1969793.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 2022801.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 704302.9375, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 2022802.375, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_103", - "analyte name": "JN1_PBS_3_day2", - "assay bead identifier": "29", - "assay bead count": { - "value": 28.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 1428352.5, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 1423441.5, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 19.20766, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 1423440.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 1435750.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 223926.95312, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 1435750.75, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_106", - "analyte name": "JN1_PBS_1_day1", - "assay bead identifier": "33", - "assay bead count": { - "value": 47.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 1428699.5, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 1310765.375, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 62.10461, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 1338967.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 1240216.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 523415.96875, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 1240217.125, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_109", - "analyte name": "Monitoring", - "assay bead identifier": "45", - "assay bead count": { - "value": 317.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 346840.59375, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 346657.84375, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 5.8652, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 346657.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 345962.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 14525.44434, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 345962.84375, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - } - ] - } - } - ], - "experimental data identifier": "BATCH_1", - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" - }, - "custom information document": { - "BatchStopTime": "2024-10-18 12:15" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "multi analyte profiling analyzer", - "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", - "sample volume setting": { - "value": 50.0, - "unit": "μL" - }, - "dilution factor setting": { - "value": 1.0, - "unit": "(unitless)" - }, - "minimum assay bead count threshold setting": { - "value": 100, - "unit": "#" - }, - "custom information document": { - "ProtocolHeater": "Off", - "DDGate": "7000 to 17000", - "SampleTimeout": "50 sec", - "ProtocolAnalysis": "Off", - "ProtocolMicrosphere": "Map", - "PlateReadDirection": "Horizontal" - } - } - ] - }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_112", - "measurement time": "2024-10-18T11:36:00+00:00", - "sample document": { - "sample identifier": "Donor14_2", - "location identifier": "A8", - "custom information document": { - "PanelName": "Panel-12345678910 [v1]", - "BeadType": "MagPlex" - } - }, - "assay bead count": { - "value": 335.0, - "unit": "#" - }, - "analyte aggregate document": { - "analyte document": [ - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_113", - "analyte name": "6P_PBS_3_day2", - "assay bead identifier": "18", - "assay bead count": { - "value": 23.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 2625886.75, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 2301674.5, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 42.73664, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 2301673.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 2315555.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 851626.25, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 2315555.5, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", - "analyte name": "6P_PBS_1_day1", - "assay bead identifier": "19", - "assay bead count": { - "value": 33.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 2329417.0, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 3373477.25, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 189.15958, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 3373476.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 2275974.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 468308.875, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 2275974.5, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_119", - "analyte name": "JN1_PBS_3_day2", - "assay bead identifier": "29", - "assay bead count": { - "value": 13.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 897272.1875, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 885829.5625, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 28.24384, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 885829.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 883969.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 149421.625, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 883969.625, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", - "analyte name": "JN1_PBS_1_day1", - "assay bead identifier": "33", - "assay bead count": { - "value": 12.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 905898.25, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 762248.1875, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 40.52594, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 762247.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 786455.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 259411.42188, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 786455.5625, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_125", - "analyte name": "Monitoring", - "assay bead identifier": "45", - "assay bead count": { - "value": 254.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 345674.6875, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 346534.65625, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 5.74274, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 346534.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 345879.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 14950.46094, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 345879.46875, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - } - ] - } - } - ], - "experimental data identifier": "BATCH_1", - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" - }, - "custom information document": { - "BatchStopTime": "2024-10-18 12:15" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "multi analyte profiling analyzer", - "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", - "sample volume setting": { - "value": 50.0, - "unit": "μL" - }, - "dilution factor setting": { - "value": 1.0, - "unit": "(unitless)" - }, - "minimum assay bead count threshold setting": { - "value": 100, - "unit": "#" - }, - "custom information document": { - "ProtocolHeater": "Off", - "DDGate": "7000 to 17000", - "SampleTimeout": "50 sec", - "ProtocolAnalysis": "Off", - "ProtocolMicrosphere": "Map", - "PlateReadDirection": "Horizontal" - } - } - ] - }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_128", - "measurement time": "2024-10-18T11:36:00+00:00", - "sample document": { - "sample identifier": "Donor14_3", - "location identifier": "A9", - "custom information document": { - "PanelName": "Panel-12345678910 [v1]", - "BeadType": "MagPlex" - } - }, - "assay bead count": { - "value": 429.0, - "unit": "#" - }, - "analyte aggregate document": { - "analyte document": [ - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_129", - "analyte name": "6P_PBS_3_day2", - "assay bead identifier": "18", - "assay bead count": { - "value": 48.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 1774805.5, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 1680169.625, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 98.25063, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 1680169.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 1487875.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 800127.1875, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 1487876.375, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_132", - "analyte name": "6P_PBS_1_day1", - "assay bead identifier": "19", - "assay bead count": { - "value": 42.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 1481667.0, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 1323144.125, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 81.45841, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 1355186.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 1217721.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 610831.3125, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 1217721.75, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_135", - "analyte name": "JN1_PBS_3_day2", - "assay bead identifier": "29", - "assay bead count": { - "value": 43.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 377147.46875, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 401668.9375, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 48.77147, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 401668.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 374818.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 81777.70312, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 374819.0625, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_138", - "analyte name": "JN1_PBS_1_day1", - "assay bead identifier": "33", - "assay bead count": { - "value": 44.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 362970.71875, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 339309.4375, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 82.3735, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 339308.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 308544.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 160117.375, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 308544.78125, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_141", - "analyte name": "Monitoring", - "assay bead identifier": "45", - "assay bead count": { - "value": 252.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 347922.53125, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 348235.25, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 5.50459, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 348234.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 347821.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 14641.02246, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 347821.59375, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - } - ] - } - } - ], - "experimental data identifier": "BATCH_1", - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" - }, - "custom information document": { - "BatchStopTime": "2024-10-18 12:15" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "multi analyte profiling analyzer", - "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", - "sample volume setting": { - "value": 50.0, - "unit": "μL" - }, - "dilution factor setting": { - "value": -0.0, - "unit": "(unitless)" - }, - "minimum assay bead count threshold setting": { - "value": 100, - "unit": "#" - }, - "custom information document": { - "ProtocolHeater": "Off", - "DDGate": "7000 to 17000", - "SampleTimeout": "50 sec", - "ProtocolAnalysis": "Off", - "ProtocolMicrosphere": "Map", - "PlateReadDirection": "Horizontal" - } - } - ] - }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_144", - "measurement time": "2024-10-18T11:36:00+00:00", - "sample document": { - "sample identifier": "Background", - "location identifier": "A10", - "custom information document": { - "PanelName": "Panel-12345678910 [v1]", - "BeadType": "MagPlex" - } - }, - "error aggregate document": { - "error document": [ - { - "error": "Not reported in file", - "error feature": "dilution factor setting" - } - ] - }, - "assay bead count": { - "value": 433.0, - "unit": "#" - }, - "analyte aggregate document": { - "analyte document": [ - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_145", - "analyte name": "6P_PBS_3_day2", - "assay bead identifier": "18", - "assay bead count": { - "value": 86.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 1308.79028, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 1451.8645, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 62.75218, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 1313.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 1313.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 730.46558, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 1407.86011, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_148", - "analyte name": "6P_PBS_1_day1", - "assay bead identifier": "19", - "assay bead count": { - "value": 69.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 1124.09937, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 1240.57715, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 64.53037, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 0.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 757.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 666.33698, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 1210.05859, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_151", - "analyte name": "JN1_PBS_3_day2", - "assay bead identifier": "29", - "assay bead count": { - "value": 56.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 1410.78894, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 1558.65112, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 65.98465, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 0.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 1313.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 807.60101, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 1501.76404, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_154", - "analyte name": "JN1_PBS_1_day1", - "assay bead identifier": "33", - "assay bead count": { - "value": 95.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 1988.97815, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 2053.41968, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 45.73727, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 1427.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 1427.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 698.80328, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 2025.47534, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_157", - "analyte name": "Monitoring", - "assay bead identifier": "45", - "assay bead count": { - "value": 127.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 347898.34375, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 349188.59375, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 6.05924, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 349188.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 348506.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 16018.87988, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 348506.90625, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - } - ] - } - } - ], - "experimental data identifier": "BATCH_1", - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" - }, - "custom information document": { - "BatchStopTime": "2024-10-18 12:15" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "multi analyte profiling analyzer", - "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", - "sample volume setting": { - "value": 50.0, - "unit": "μL" - }, - "dilution factor setting": { - "value": -0.0, - "unit": "(unitless)" - }, - "minimum assay bead count threshold setting": { - "value": 100, - "unit": "#" - }, - "custom information document": { - "ProtocolHeater": "Off", - "DDGate": "7000 to 17000", - "SampleTimeout": "50 sec", - "ProtocolAnalysis": "Off", - "ProtocolMicrosphere": "Map", - "PlateReadDirection": "Horizontal" - } - } - ] - }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_160", - "measurement time": "2024-10-18T11:36:00+00:00", - "sample document": { - "sample identifier": "Background", - "location identifier": "A11", - "custom information document": { - "PanelName": "Panel-12345678910 [v1]", - "BeadType": "MagPlex" - } - }, - "error aggregate document": { - "error document": [ - { - "error": "Not reported in file", - "error feature": "dilution factor setting" - } - ] - }, - "assay bead count": { - "value": 430.0, - "unit": "#" - }, - "analyte aggregate document": { - "analyte document": [ - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_161", - "analyte name": "6P_PBS_3_day2", - "assay bead identifier": "18", - "assay bead count": { - "value": 98.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 1488.32056, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 1527.0166, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 51.33269, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 1256.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 1256.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 615.7077, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 1497.55078, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", - "analyte name": "6P_PBS_1_day1", - "assay bead identifier": "19", - "assay bead count": { - "value": 90.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 1220.98718, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 1262.1344, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 72.18934, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 0.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 1213.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 618.38751, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 1183.20581, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_167", - "analyte name": "JN1_PBS_3_day2", - "assay bead identifier": "29", - "assay bead count": { - "value": 50.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 1712.74585, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 2056.35474, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 143.79263, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 1900.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 1900.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 553.05914, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 1659.09875, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_170", - "analyte name": "JN1_PBS_1_day1", - "assay bead identifier": "33", - "assay bead count": { - "value": 101.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 1907.43652, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 1956.73633, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 52.14221, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 2371.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 2371.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 822.51318, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 1927.84387, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_173", - "analyte name": "Monitoring", - "assay bead identifier": "45", - "assay bead count": { - "value": 91.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 345997.5625, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 344818.21875, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 5.4385, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 344817.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 344614.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 14651.0791, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 344615.0, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - } - ] - } - } - ], - "experimental data identifier": "BATCH_1", - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" - }, - "custom information document": { - "BatchStopTime": "2024-10-18 12:15" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "multi analyte profiling analyzer", - "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", - "sample volume setting": { - "value": 50.0, - "unit": "μL" - }, - "dilution factor setting": { - "value": -0.0, - "unit": "(unitless)" - }, - "minimum assay bead count threshold setting": { - "value": 100, - "unit": "#" - }, - "custom information document": { - "ProtocolHeater": "Off", - "DDGate": "7000 to 17000", - "SampleTimeout": "50 sec", - "ProtocolAnalysis": "Off", - "ProtocolMicrosphere": "Map", - "PlateReadDirection": "Horizontal" - } - } - ] - }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_176", - "measurement time": "2024-10-18T11:36:00+00:00", - "sample document": { - "sample identifier": "Background", - "location identifier": "A12", - "custom information document": { - "PanelName": "Panel-12345678910 [v1]", - "BeadType": "MagPlex" - } - }, - "error aggregate document": { - "error document": [ - { - "error": "Not reported in file", - "error feature": "dilution factor setting" - } - ] - }, - "assay bead count": { - "value": 317.0, - "unit": "#" - }, - "analyte aggregate document": { - "analyte document": [ - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", - "analyte name": "6P_PBS_3_day2", - "assay bead identifier": "18", - "assay bead count": { - "value": 66.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 1387.90881, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 1289.0946, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 56.99452, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 1392.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 1392.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 586.6936, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 1265.13281, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_180", - "analyte name": "6P_PBS_1_day1", - "assay bead identifier": "19", - "assay bead count": { - "value": 50.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 1266.28259, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 1429.48047, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 56.49734, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 1094.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 1094.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 530.39929, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 1383.1731, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", - "analyte name": "JN1_PBS_3_day2", - "assay bead identifier": "29", - "assay bead count": { - "value": 56.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 1544.80225, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 1528.52722, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 46.69062, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 2058.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 2058.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 564.90387, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 1522.06653, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_186", - "analyte name": "JN1_PBS_1_day1", - "assay bead identifier": "33", - "assay bead count": { - "value": 77.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 2071.86353, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 2052.59863, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 45.33967, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 1819.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 1819.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 757.81317, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 2043.09888, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", - "analyte name": "Monitoring", - "assay bead identifier": "45", - "assay bead count": { - "value": 68.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 344365.4375, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": 345944.09375, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - }, - { - "statistical value": { - "value": 5.57576, - "unit": "(unitless)", - "has statistic datum role": "coefficient of variation role" - } - }, - { - "statistical value": { - "value": 345943.0, - "unit": "RFU", - "has statistic datum role": "mode value role" - } - }, - { - "statistical value": { - "value": 345843.0, - "unit": "RFU", - "has statistic datum role": "trimmed mode value role" - } - }, - { - "statistical value": { - "value": 16299.80469, - "unit": "(unitless)", - "has statistic datum role": "trimmed standard deviation role" - } - }, - { - "statistical value": { - "value": 345843.78125, - "unit": "RFU", - "has statistic datum role": "trimmed arithmetic mean role" - } - } - ] - } - } - ] - } - } - ] + "calculated data aggregate document": { + "calculated data document": [ + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 2614633.5, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_2", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 2614633.5, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_3", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 2233798.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_5", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_4", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 2233798.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_6", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_4", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 1358538.625, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_8", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 1358538.625, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_9", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 1342086.5, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_11", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_10", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 1342086.5, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_12", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_10", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -1793.78125, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_14", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -1793.78125, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_15", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 2578317.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_18", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_17", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 2578317.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_17", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 2134953.75, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_21", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_20", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 2134953.75, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_22", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_20", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 840306.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_24", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_23", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 840306.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_23", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 803230.6875, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_27", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_26", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 803230.6875, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_28", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_26", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -2628.75, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_30", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_29", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -2628.75, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_29", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 1506666.875, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_34", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_33", + "data source feature": "fluorescence" } - } - ], - "experimental data identifier": "BATCH_1", - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 1506666.875, + "unit": "RFU" }, - "custom information document": { - "BatchStopTime": "2024-10-18 12:15" + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_35", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_33", + "data source feature": "fluorescence" + } + ] } - } - } - ], - "calculated data aggregate document": { - "calculated data document": [ + }, { "calculated data name": "Net MFI", "calculated result": { - "value": 2614633.5, + "value": 1458435.125, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_2", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_36", "data source feature": "fluorescence" } ] @@ -4944,14 +374,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 2614633.5, + "value": 1458435.125, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_3", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_38", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_36", "data source feature": "fluorescence" } ] @@ -4960,14 +390,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 2233798.0, + "value": 306082.40625, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_5", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_40", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_4", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_39", "data source feature": "fluorescence" } ] @@ -4976,14 +406,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 2233798.0, + "value": 306082.40625, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_6", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_41", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_4", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_39", "data source feature": "fluorescence" } ] @@ -4992,14 +422,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 1358538.625, + "value": 314847.46875, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_8", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_42", "data source feature": "fluorescence" } ] @@ -5008,14 +438,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 1358538.625, + "value": 314847.46875, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_9", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_44", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_42", "data source feature": "fluorescence" } ] @@ -5024,14 +454,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 1342086.5, + "value": 2051.1875, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_11", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_46", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_10", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_45", "data source feature": "fluorescence" } ] @@ -5040,14 +470,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 1342086.5, + "value": 2051.1875, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_12", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_47", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_10", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_45", "data source feature": "fluorescence" } ] @@ -5056,14 +486,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": -1793.78125, + "value": 573213.0625, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_14", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_50", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", "data source feature": "fluorescence" } ] @@ -5072,14 +502,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": -1793.78125, + "value": 573213.0625, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_15", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_51", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", "data source feature": "fluorescence" } ] @@ -5088,14 +518,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 2578317.0, + "value": 576409.125, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_18", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_53", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_17", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_52", "data source feature": "fluorescence" } ] @@ -5104,14 +534,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 2578317.0, + "value": 576409.125, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_54", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_17", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_52", "data source feature": "fluorescence" } ] @@ -5120,14 +550,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 2134953.75, + "value": 98610.40625, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_21", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_56", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_20", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", "data source feature": "fluorescence" } ] @@ -5136,14 +566,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 2134953.75, + "value": 98610.40625, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_22", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_57", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_20", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", "data source feature": "fluorescence" } ] @@ -5152,14 +582,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 840306.0, + "value": 86798.08594, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_24", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_59", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_23", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_58", "data source feature": "fluorescence" } ] @@ -5168,14 +598,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 840306.0, + "value": 86798.08594, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_60", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_23", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_58", "data source feature": "fluorescence" } ] @@ -5184,14 +614,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 803230.6875, + "value": 2078.46875, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_27", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_62", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_26", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", "data source feature": "fluorescence" } ] @@ -5200,14 +630,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 803230.6875, + "value": 2078.46875, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_28", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_63", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_26", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", "data source feature": "fluorescence" } ] @@ -5216,14 +646,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": -2628.75, + "value": 290841.9375, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_30", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_66", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_29", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_65", "data source feature": "fluorescence" } ] @@ -5232,14 +662,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": -2628.75, + "value": 290841.9375, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_67", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_29", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_65", "data source feature": "fluorescence" } ] @@ -5248,14 +678,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 1506666.875, + "value": 283158.4375, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_34", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_69", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_33", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_68", "data source feature": "fluorescence" } ] @@ -5264,14 +694,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 1506666.875, + "value": 283158.4375, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_35", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_70", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_33", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_68", "data source feature": "fluorescence" } ] @@ -5280,14 +710,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 1458435.125, + "value": 40278.03906, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_72", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_36", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_71", "data source feature": "fluorescence" } ] @@ -5296,14 +726,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 1458435.125, + "value": 40278.03906, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_38", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_73", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_36", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_71", "data source feature": "fluorescence" } ] @@ -5312,14 +742,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 306082.40625, + "value": 34964.9375, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_40", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_75", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_39", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_74", "data source feature": "fluorescence" } ] @@ -5328,14 +758,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 306082.40625, + "value": 34964.9375, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_41", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_76", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_39", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_74", "data source feature": "fluorescence" } ] @@ -5344,14 +774,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 314847.46875, + "value": 1676.34375, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_78", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_42", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_77", "data source feature": "fluorescence" } ] @@ -5360,14 +790,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 314847.46875, + "value": 1676.34375, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_44", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_79", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_42", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_77", "data source feature": "fluorescence" } ] @@ -5376,14 +806,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 2051.1875, + "value": 69200.57812, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_46", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_82", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_45", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_81", "data source feature": "fluorescence" } ] @@ -5392,14 +822,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 2051.1875, + "value": 69200.57812, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_47", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_83", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_45", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_81", "data source feature": "fluorescence" } ] @@ -5408,14 +838,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 573213.0625, + "value": 59653.35156, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_50", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_85", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_84", "data source feature": "fluorescence" } ] @@ -5424,14 +854,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 573213.0625, + "value": 59653.35156, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_51", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_84", "data source feature": "fluorescence" } ] @@ -5440,14 +870,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 576409.125, + "value": 10147.15723, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_53", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_88", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_52", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_87", "data source feature": "fluorescence" } ] @@ -5456,14 +886,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 576409.125, + "value": 10147.15723, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_54", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_89", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_52", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_87", "data source feature": "fluorescence" } ] @@ -5472,14 +902,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 98610.40625, + "value": 9690.39258, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_56", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_91", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_90", "data source feature": "fluorescence" } ] @@ -5488,14 +918,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 98610.40625, + "value": 9690.39258, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_57", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_90", "data source feature": "fluorescence" } ] @@ -5504,14 +934,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 86798.08594, + "value": 146.125, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_59", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_94", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_58", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_93", "data source feature": "fluorescence" } ] @@ -5520,14 +950,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 86798.08594, + "value": 146.125, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_60", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_95", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_58", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_93", "data source feature": "fluorescence" } ] @@ -5536,14 +966,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 2078.46875, + "value": 2624898.0, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_62", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_97", "data source feature": "fluorescence" } ] @@ -5552,14 +982,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 2078.46875, + "value": 2624898.0, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_63", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_99", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_97", "data source feature": "fluorescence" } ] @@ -5568,14 +998,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 290841.9375, + "value": 2330491.75, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_66", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_101", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_65", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_100", "data source feature": "fluorescence" } ] @@ -5584,14 +1014,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 290841.9375, + "value": 2330491.75, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_67", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_102", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_65", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_100", "data source feature": "fluorescence" } ] @@ -5600,14 +1030,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 283158.4375, + "value": 1426847.375, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_69", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_68", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_103", "data source feature": "fluorescence" } ] @@ -5616,14 +1046,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 283158.4375, + "value": 1426847.375, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_70", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_105", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_68", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_103", "data source feature": "fluorescence" } ] @@ -5632,14 +1062,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 40278.03906, + "value": 1426716.75, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_72", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_107", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_71", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_106", "data source feature": "fluorescence" } ] @@ -5648,14 +1078,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 40278.03906, + "value": 1426716.75, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_73", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_108", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_71", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_106", "data source feature": "fluorescence" } ] @@ -5664,14 +1094,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 34964.9375, + "value": 96.46875, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_75", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_74", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_109", "data source feature": "fluorescence" } ] @@ -5680,14 +1110,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 34964.9375, + "value": 96.46875, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_76", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_111", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_74", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_109", "data source feature": "fluorescence" } ] @@ -5696,14 +1126,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 1676.34375, + "value": 2624401.75, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_78", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_114", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_77", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_113", "data source feature": "fluorescence" } ] @@ -5712,14 +1142,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 1676.34375, + "value": 2624401.75, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_79", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_115", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_77", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_113", "data source feature": "fluorescence" } ] @@ -5728,14 +1158,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 69200.57812, + "value": 2328130.75, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_82", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_117", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_81", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", "data source feature": "fluorescence" } ] @@ -5744,14 +1174,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 69200.57812, + "value": 2328130.75, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_83", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_118", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_81", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", "data source feature": "fluorescence" } ] @@ -5760,14 +1190,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 59653.35156, + "value": 895767.0625, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_85", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_120", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_84", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_119", "data source feature": "fluorescence" } ] @@ -5776,14 +1206,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 59653.35156, + "value": 895767.0625, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_121", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_84", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_119", "data source feature": "fluorescence" } ] @@ -5792,14 +1222,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 10147.15723, + "value": 903915.5625, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_88", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_123", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_87", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", "data source feature": "fluorescence" } ] @@ -5808,14 +1238,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 10147.15723, + "value": 903915.5625, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_89", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_124", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_87", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", "data source feature": "fluorescence" } ] @@ -5824,14 +1254,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 9690.39258, + "value": -1069.4375, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_91", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_126", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_90", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_125", "data source feature": "fluorescence" } ] @@ -5840,14 +1270,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 9690.39258, + "value": -1069.4375, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_127", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_90", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_125", "data source feature": "fluorescence" } ] @@ -5856,14 +1286,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 146.125, + "value": 1773320.375, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_94", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_130", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_93", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_129", "data source feature": "fluorescence" } ] @@ -5872,14 +1302,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 146.125, + "value": 1773320.375, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_95", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_131", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_93", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_129", "data source feature": "fluorescence" } ] @@ -5888,14 +1318,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 2624898.0, + "value": 1480380.625, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_133", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_97", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_132", "data source feature": "fluorescence" } ] @@ -5904,14 +1334,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 2624898.0, + "value": 1480380.625, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_99", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_134", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_97", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_132", "data source feature": "fluorescence" } ] @@ -5920,14 +1350,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 2330491.75, + "value": 375642.34375, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_101", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_136", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_100", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_135", "data source feature": "fluorescence" } ] @@ -5936,14 +1366,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 2330491.75, + "value": 375642.34375, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_102", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_137", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_100", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_135", "data source feature": "fluorescence" } ] @@ -5952,14 +1382,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 1426847.375, + "value": 360988.03125, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_139", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_103", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_138", "data source feature": "fluorescence" } ] @@ -5968,14 +1398,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 1426847.375, + "value": 360988.03125, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_105", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_140", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_103", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_138", "data source feature": "fluorescence" } ] @@ -5984,14 +1414,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 1426716.75, + "value": 1178.40625, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_107", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_142", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_106", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_141", "data source feature": "fluorescence" } ] @@ -6000,14 +1430,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 1426716.75, + "value": 1178.40625, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_108", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_143", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_106", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_141", "data source feature": "fluorescence" } ] @@ -6016,14 +1446,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 96.46875, + "value": -176.32446, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_146", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_109", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_145", "data source feature": "fluorescence" } ] @@ -6032,14 +1462,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 96.46875, + "value": 0.0, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_111", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_147", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_109", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_145", "data source feature": "fluorescence" } ] @@ -6048,14 +1478,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 2624401.75, + "value": -162.27075, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_114", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_149", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_113", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_148", "data source feature": "fluorescence" } ] @@ -6064,14 +1494,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 2624401.75, + "value": 0.0, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_115", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_150", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_113", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_148", "data source feature": "fluorescence" } ] @@ -6080,14 +1510,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 2328130.75, + "value": -94.33728, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_117", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_152", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_151", "data source feature": "fluorescence" } ] @@ -6096,14 +1526,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 2328130.75, + "value": 0.0, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_118", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_153", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_151", "data source feature": "fluorescence" } ] @@ -6112,14 +1542,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 895767.0625, + "value": 6.28052, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_120", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_155", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_119", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_154", "data source feature": "fluorescence" } ] @@ -6128,14 +1558,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 895767.0625, + "value": 0.0, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_121", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_156", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_119", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_154", "data source feature": "fluorescence" } ] @@ -6144,14 +1574,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 903915.5625, + "value": 1154.21875, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_123", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_158", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_157", "data source feature": "fluorescence" } ] @@ -6160,14 +1590,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 903915.5625, + "value": 0.0, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_124", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_159", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_157", "data source feature": "fluorescence" } ] @@ -6176,14 +1606,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": -1069.4375, + "value": 3.20581, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_126", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_162", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_125", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_161", "data source feature": "fluorescence" } ] @@ -6192,14 +1622,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": -1069.4375, + "value": 0.0, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_127", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_163", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_125", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_161", "data source feature": "fluorescence" } ] @@ -6208,14 +1638,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 1773320.375, + "value": -65.38293, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_130", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_165", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_129", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", "data source feature": "fluorescence" } ] @@ -6224,14 +1654,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 1773320.375, + "value": 0.0, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_131", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_166", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_129", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", "data source feature": "fluorescence" } ] @@ -6240,14 +1670,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 1480380.625, + "value": 207.61963, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_133", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_168", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_132", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_167", "data source feature": "fluorescence" } ] @@ -6256,14 +1686,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 1480380.625, + "value": 0.0, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_134", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_169", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_132", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_167", "data source feature": "fluorescence" } ] @@ -6272,14 +1702,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 375642.34375, + "value": -75.26111, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_136", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_171", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_135", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_170", "data source feature": "fluorescence" } ] @@ -6288,14 +1718,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 375642.34375, + "value": 0.0, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_137", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_172", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_135", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_170", "data source feature": "fluorescence" } ] @@ -6304,14 +1734,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 360988.03125, + "value": -746.5625, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_139", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_174", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_138", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_173", "data source feature": "fluorescence" } ] @@ -6320,14 +1750,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 360988.03125, + "value": 0.0, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_140", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_175", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_138", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_173", "data source feature": "fluorescence" } ] @@ -6336,14 +1766,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 1178.40625, + "value": -97.20593, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_142", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_178", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_141", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", "data source feature": "fluorescence" } ] @@ -6352,14 +1782,14 @@ { "calculated data name": "Avg Net MFI", "calculated result": { - "value": 1178.40625, + "value": 0.0, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_143", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_179", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_141", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", "data source feature": "fluorescence" } ] @@ -6368,14 +1798,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": -176.32446, + "value": -20.08752, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_146", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_181", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_145", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_180", "data source feature": "fluorescence" } ] @@ -6387,11 +1817,11 @@ "value": 0.0, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_147", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_182", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_145", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_180", "data source feature": "fluorescence" } ] @@ -6400,14 +1830,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": -162.27075, + "value": 39.67603, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_149", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_184", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_148", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", "data source feature": "fluorescence" } ] @@ -6419,11 +1849,11 @@ "value": 0.0, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_150", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_185", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_148", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", "data source feature": "fluorescence" } ] @@ -6432,14 +1862,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": -94.33728, + "value": 89.16589, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_152", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_187", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_151", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_186", "data source feature": "fluorescence" } ] @@ -6451,11 +1881,11 @@ "value": 0.0, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_153", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_188", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_151", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_186", "data source feature": "fluorescence" } ] @@ -6464,14 +1894,14 @@ { "calculated data name": "Net MFI", "calculated result": { - "value": 6.28052, + "value": -2378.6875, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_155", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_190", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_154", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", "data source feature": "fluorescence" } ] @@ -6483,402 +1913,4976 @@ "value": 0.0, "unit": "RFU" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_156", + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_191", "data source aggregate document": { "data source document": [ { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_154", + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", "data source feature": "fluorescence" } ] } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 1154.21875, - "unit": "RFU" + } + ] + }, + "data system document": { + "ASM file identifier": "luminex_intelliflex_example_01.json", + "data system instance identifier": "SOME-PC", + "ASM converter name": "allotropy_luminex_intelliflex", + "ASM converter version": "0.1.118", + "file name": "luminex_intelliflex_example_01.csv", + "software name": "INTELLIFLEX", + "software version": "2.1.1015", + "UNC path": "tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_example_01.csv" + }, + "device system document": { + "equipment serial number": "SERIAL_12345", + "model number": "Intelliflex", + "calibration aggregate document": { + "calibration document": [ + { + "calibration name": "Calibration", + "calibration time": "2024-10-18T10:26:00+00:00", + "calibration report": "Calibrated" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_158", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_157", - "data source feature": "fluorescence" + { + "calibration name": "Verification", + "calibration time": "2024-10-18T10:54:00+00:00", + "calibration report": "Verified" + }, + { + "calibration name": "Fluidics Test", + "calibration time": "2024-10-18T11:33:00+00:00", + "calibration report": "Verified" + } + ] + }, + "custom information document": { + "Country Code": "409", + "Version": "1" + } + }, + "multi analyte profiling document": [ + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 1.0, + "unit": "(unitless)" + }, + "minimum assay bead count threshold setting": { + "value": 100, + "unit": "#" + }, + "custom information document": { + "ProtocolHeater": "Off", + "DDGate": "7000 to 17000", + "SampleTimeout": "50 sec", + "ProtocolAnalysis": "Off", + "ProtocolMicrosphere": "Map", + "PlateReadDirection": "Horizontal" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_0", + "measurement time": "2024-10-18T11:36:00+00:00", + "sample document": { + "sample identifier": "Donor14_1", + "location identifier": "A1", + "custom information document": { + "PanelName": "Panel-12345678910 [v1]", + "BeadType": "MagPlex" + } + }, + "assay bead count": { + "value": 428.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", + "analyte name": "6P_PBS_3_day2", + "assay bead identifier": "18", + "assay bead count": { + "value": 93.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 2616118.5, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 2287652.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 56.97413, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 2287651.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 2255550.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 855071.875, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 2255550.5, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_4", + "analyte name": "6P_PBS_1_day1", + "assay bead identifier": "19", + "assay bead count": { + "value": 73.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 2235084.25, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 2218420.75, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 135.32117, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 2218420.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 1771434.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 861481.0, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 1771435.0, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", + "analyte name": "JN1_PBS_3_day2", + "assay bead identifier": "29", + "assay bead count": { + "value": 50.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 1360043.75, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 1346596.25, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 31.93434, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 1346595.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 1330304.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 256534.6875, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 1330304.5, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_10", + "analyte name": "JN1_PBS_1_day1", + "assay bead identifier": "33", + "assay bead count": { + "value": 77.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 1344069.25, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 1187649.875, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 47.42143, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 1187649.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 1181347.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 476903.71875, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 1181347.75, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", + "analyte name": "Monitoring", + "assay bead identifier": "45", + "assay bead count": { + "value": 135.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 344950.34375, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 345674.1875, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 6.44802, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 345673.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 344903.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 15128.31445, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 344904.15625, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + } + ] } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" + } + ], + "experimental data identifier": "BATCH_1", + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_159", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_157", - "data source feature": "fluorescence" - } - ] + "custom information document": { + "BatchStopTime": "2024-10-18 12:15" } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 3.20581, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_162", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_161", - "data source feature": "fluorescence" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 1.0, + "unit": "(unitless)" + }, + "minimum assay bead count threshold setting": { + "value": 100, + "unit": "#" + }, + "custom information document": { + "ProtocolHeater": "Off", + "DDGate": "7000 to 17000", + "SampleTimeout": "50 sec", + "ProtocolAnalysis": "Off", + "ProtocolMicrosphere": "Map", + "PlateReadDirection": "Horizontal" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_16", + "measurement time": "2024-10-18T11:36:00+00:00", + "sample document": { + "sample identifier": "Donor14_2", + "location identifier": "A2", + "custom information document": { + "PanelName": "Panel-12345678910 [v1]", + "BeadType": "MagPlex" + } + }, + "assay bead count": { + "value": 279.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_17", + "analyte name": "6P_PBS_3_day2", + "assay bead identifier": "18", + "assay bead count": { + "value": 53.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 2579802.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 1880649.75, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 62.5572, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 1880649.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 1893432.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 1105235.125, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 1893432.75, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_20", + "analyte name": "6P_PBS_1_day1", + "assay bead identifier": "19", + "assay bead count": { + "value": 54.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 2136240.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 1567692.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 60.8837, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 1567691.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 1585196.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 908836.375, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 1585196.625, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_23", + "analyte name": "JN1_PBS_3_day2", + "assay bead identifier": "29", + "assay bead count": { + "value": 55.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 841811.125, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 994082.875, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 82.10176, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 994082.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 865214.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 222376.375, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 865214.625, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_26", + "analyte name": "JN1_PBS_1_day1", + "assay bead identifier": "33", + "assay bead count": { + "value": 51.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 805213.375, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 679126.875, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 50.29792, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 679126.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 684090.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 299353.46875, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 684090.5625, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_29", + "analyte name": "Monitoring", + "assay bead identifier": "45", + "assay bead count": { + "value": 66.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 344115.375, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 345048.875, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 5.03744, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 345048.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 344155.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 12813.18457, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 344155.90625, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + } + ] } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" + } + ], + "experimental data identifier": "BATCH_1", + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_163", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_161", - "data source feature": "fluorescence" - } - ] + "custom information document": { + "BatchStopTime": "2024-10-18 12:15" } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -65.38293, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_165", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", - "data source feature": "fluorescence" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 1.0, + "unit": "(unitless)" + }, + "minimum assay bead count threshold setting": { + "value": 100, + "unit": "#" + }, + "custom information document": { + "ProtocolHeater": "Off", + "DDGate": "7000 to 17000", + "SampleTimeout": "50 sec", + "ProtocolAnalysis": "Off", + "ProtocolMicrosphere": "Map", + "PlateReadDirection": "Horizontal" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_32", + "measurement time": "2024-10-18T11:36:00+00:00", + "sample document": { + "sample identifier": "Donor14_3", + "location identifier": "A3", + "custom information document": { + "PanelName": "Panel-12345678910 [v1]", + "BeadType": "MagPlex" + } + }, + "assay bead count": { + "value": 323.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_33", + "analyte name": "6P_PBS_3_day2", + "assay bead identifier": "18", + "assay bead count": { + "value": 66.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 1508152.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 1222728.875, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 58.7572, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 1222728.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 1231057.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 676261.25, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 1231058.5, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_36", + "analyte name": "6P_PBS_1_day1", + "assay bead identifier": "19", + "assay bead count": { + "value": 52.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 1459721.5, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 1264914.375, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 39.4568, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 1264914.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 1293854.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 412733.90625, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 1293854.625, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_39", + "analyte name": "JN1_PBS_3_day2", + "assay bead identifier": "29", + "assay bead count": { + "value": 50.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 307587.53125, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 304128.46875, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 31.35828, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 304127.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 304063.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 68959.875, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 304064.34375, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_42", + "analyte name": "JN1_PBS_1_day1", + "assay bead identifier": "33", + "assay bead count": { + "value": 72.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 316830.15625, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 284125.78125, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 67.42081, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 291475.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 271770.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 110970.28125, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 271770.53125, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_45", + "analyte name": "Monitoring", + "assay bead identifier": "45", + "assay bead count": { + "value": 83.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 348795.3125, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 348842.71875, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 5.96325, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 348842.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 348748.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 16361.125, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 348748.65625, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + } + ] } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" + } + ], + "experimental data identifier": "BATCH_1", + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_166", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", - "data source feature": "fluorescence" - } - ] + "custom information document": { + "BatchStopTime": "2024-10-18 12:15" } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 207.61963, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_168", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_167", - "data source feature": "fluorescence" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 1.0, + "unit": "(unitless)" + }, + "minimum assay bead count threshold setting": { + "value": 100, + "unit": "#" + }, + "custom information document": { + "ProtocolHeater": "Off", + "DDGate": "7000 to 17000", + "SampleTimeout": "50 sec", + "ProtocolAnalysis": "Off", + "ProtocolMicrosphere": "Map", + "PlateReadDirection": "Horizontal" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_48", + "measurement time": "2024-10-18T11:36:00+00:00", + "sample document": { + "sample identifier": "Donor14_4", + "location identifier": "A4", + "custom information document": { + "PanelName": "Panel-12345678910 [v1]", + "BeadType": "MagPlex" + } + }, + "assay bead count": { + "value": 417.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", + "analyte name": "6P_PBS_3_day2", + "assay bead identifier": "18", + "assay bead count": { + "value": 75.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 574698.1875, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 547598.75, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 71.08538, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 569239.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 521810.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 263613.875, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 521811.0625, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_52", + "analyte name": "6P_PBS_1_day1", + "assay bead identifier": "19", + "assay bead count": { + "value": 71.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 577695.5, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 522776.25, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 58.64199, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 544674.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 514728.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 251477.35938, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 514728.5625, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", + "analyte name": "JN1_PBS_3_day2", + "assay bead identifier": "29", + "assay bead count": { + "value": 50.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 100115.53125, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 110496.78906, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 47.22391, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 114042.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 105532.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 28427.02148, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 105533.28906, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_58", + "analyte name": "JN1_PBS_1_day1", + "assay bead identifier": "33", + "assay bead count": { + "value": 89.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 88780.78125, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 85070.04688, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 63.86487, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 112043.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 105188.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 45747.93359, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 82327.25, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", + "analyte name": "Monitoring", + "assay bead identifier": "45", + "assay bead count": { + "value": 132.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 348822.59375, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 348996.5625, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 6.07236, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 348996.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 348250.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 15700.69531, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 348250.59375, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + } + ] } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" + } + ], + "experimental data identifier": "BATCH_1", + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_169", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_167", - "data source feature": "fluorescence" - } - ] + "custom information document": { + "BatchStopTime": "2024-10-18 12:15" } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -75.26111, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_171", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_170", - "data source feature": "fluorescence" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 1.0, + "unit": "(unitless)" + }, + "minimum assay bead count threshold setting": { + "value": 100, + "unit": "#" + }, + "custom information document": { + "ProtocolHeater": "Off", + "DDGate": "7000 to 17000", + "SampleTimeout": "50 sec", + "ProtocolAnalysis": "Off", + "ProtocolMicrosphere": "Map", + "PlateReadDirection": "Horizontal" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_64", + "measurement time": "2024-10-18T11:36:00+00:00", + "sample document": { + "sample identifier": "Donor14_5", + "location identifier": "A5", + "custom information document": { + "PanelName": "Panel-12345678910 [v1]", + "BeadType": "MagPlex" + } + }, + "assay bead count": { + "value": 390.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_65", + "analyte name": "6P_PBS_3_day2", + "assay bead identifier": "18", + "assay bead count": { + "value": 33.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 292327.0625, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 303485.46875, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 86.12634, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 331412.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 272991.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 146162.59375, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 264678.15625, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_68", + "analyte name": "6P_PBS_1_day1", + "assay bead identifier": "19", + "assay bead count": { + "value": 21.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 284444.8125, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 471778.875, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 224.86909, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 548167.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 276092.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 139272.25, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 248782.90625, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_71", + "analyte name": "JN1_PBS_3_day2", + "assay bead identifier": "29", + "assay bead count": { + "value": 17.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 41783.16406, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 41152.84766, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 29.95466, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 45010.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 42599.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 7417.97803, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 40307.96094, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_74", + "analyte name": "JN1_PBS_1_day1", + "assay bead identifier": "33", + "assay bead count": { + "value": 17.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 36947.63672, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 42333.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 78.52621, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 62519.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 53051.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 23113.55859, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 38373.93359, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_77", + "analyte name": "Monitoring", + "assay bead identifier": "45", + "assay bead count": { + "value": 302.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 348420.46875, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 349551.28125, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 6.02085, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 349550.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 348445.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 13664.47852, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 348445.625, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + } + ] } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_172", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_170", - "data source feature": "fluorescence" + } + ], + "experimental data identifier": "BATCH_1", + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" + }, + "custom information document": { + "BatchStopTime": "2024-10-18 12:15" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 1.0, + "unit": "(unitless)" + }, + "minimum assay bead count threshold setting": { + "value": 100, + "unit": "#" + }, + "custom information document": { + "ProtocolHeater": "Off", + "DDGate": "7000 to 17000", + "SampleTimeout": "50 sec", + "ProtocolAnalysis": "Off", + "ProtocolMicrosphere": "Map", + "PlateReadDirection": "Horizontal" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_80", + "measurement time": "2024-10-18T11:36:00+00:00", + "sample document": { + "sample identifier": "Donor14_6", + "location identifier": "A6", + "custom information document": { + "PanelName": "Panel-12345678910 [v1]", + "BeadType": "MagPlex" + } + }, + "assay bead count": { + "value": 442.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_81", + "analyte name": "6P_PBS_3_day2", + "assay bead identifier": "18", + "assay bead count": { + "value": 84.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 70685.69531, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 73905.8125, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 64.04994, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 95687.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 90650.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 41846.37891, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 72545.26562, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_84", + "analyte name": "6P_PBS_1_day1", + "assay bead identifier": "19", + "assay bead count": { + "value": 50.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 60939.72266, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 58201.54688, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 67.02922, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 79081.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 73661.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 33269.4375, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 56503.72656, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_87", + "analyte name": "JN1_PBS_3_day2", + "assay bead identifier": "29", + "assay bead count": { + "value": 52.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 11652.2832, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 13357.05273, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 88.72879, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 10118.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 10118.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 2976.23389, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 11760.73535, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_90", + "analyte name": "JN1_PBS_1_day1", + "assay bead identifier": "33", + "assay bead count": { + "value": 88.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 11673.08984, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 11229.52344, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 59.00506, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 13135.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 13135.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 5251.9541, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 10826.23535, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_93", + "analyte name": "Monitoring", + "assay bead identifier": "45", + "assay bead count": { + "value": 168.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 346890.25, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 347164.6875, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 5.26796, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 347164.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 347034.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 14557.70996, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 347034.78125, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + } + ] } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -746.5625, - "unit": "RFU" + } + ], + "experimental data identifier": "BATCH_1", + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_174", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_173", - "data source feature": "fluorescence" - } - ] + "custom information document": { + "BatchStopTime": "2024-10-18 12:15" } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_175", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_173", - "data source feature": "fluorescence" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 1.0, + "unit": "(unitless)" + }, + "minimum assay bead count threshold setting": { + "value": 100, + "unit": "#" + }, + "custom information document": { + "ProtocolHeater": "Off", + "DDGate": "7000 to 17000", + "SampleTimeout": "50 sec", + "ProtocolAnalysis": "Off", + "ProtocolMicrosphere": "Map", + "PlateReadDirection": "Horizontal" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_96", + "measurement time": "2024-10-18T11:36:00+00:00", + "sample document": { + "sample identifier": "Donor14_1", + "location identifier": "A7", + "custom information document": { + "PanelName": "Panel-12345678910 [v1]", + "BeadType": "MagPlex" + } + }, + "assay bead count": { + "value": 463.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_97", + "analyte name": "6P_PBS_3_day2", + "assay bead identifier": "18", + "assay bead count": { + "value": 34.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 2626383.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 2498370.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 61.50818, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 2498369.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 2376340.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 913245.1875, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 2376341.25, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_100", + "analyte name": "6P_PBS_1_day1", + "assay bead identifier": "19", + "assay bead count": { + "value": 37.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 2331778.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 1969793.75, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 40.55054, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 1969793.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 2022801.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 704302.9375, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 2022802.375, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_103", + "analyte name": "JN1_PBS_3_day2", + "assay bead identifier": "29", + "assay bead count": { + "value": 28.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 1428352.5, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 1423441.5, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 19.20766, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 1423440.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 1435750.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 223926.95312, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 1435750.75, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_106", + "analyte name": "JN1_PBS_1_day1", + "assay bead identifier": "33", + "assay bead count": { + "value": 47.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 1428699.5, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 1310765.375, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 62.10461, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 1338967.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 1240216.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 523415.96875, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 1240217.125, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_109", + "analyte name": "Monitoring", + "assay bead identifier": "45", + "assay bead count": { + "value": 317.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 346840.59375, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 346657.84375, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 5.8652, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 346657.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 345962.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 14525.44434, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 345962.84375, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + } + ] } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -97.20593, - "unit": "RFU" + } + ], + "experimental data identifier": "BATCH_1", + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_178", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", - "data source feature": "fluorescence" - } - ] + "custom information document": { + "BatchStopTime": "2024-10-18 12:15" } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_179", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", - "data source feature": "fluorescence" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 1.0, + "unit": "(unitless)" + }, + "minimum assay bead count threshold setting": { + "value": 100, + "unit": "#" + }, + "custom information document": { + "ProtocolHeater": "Off", + "DDGate": "7000 to 17000", + "SampleTimeout": "50 sec", + "ProtocolAnalysis": "Off", + "ProtocolMicrosphere": "Map", + "PlateReadDirection": "Horizontal" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_112", + "measurement time": "2024-10-18T11:36:00+00:00", + "sample document": { + "sample identifier": "Donor14_2", + "location identifier": "A8", + "custom information document": { + "PanelName": "Panel-12345678910 [v1]", + "BeadType": "MagPlex" + } + }, + "assay bead count": { + "value": 335.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_113", + "analyte name": "6P_PBS_3_day2", + "assay bead identifier": "18", + "assay bead count": { + "value": 23.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 2625886.75, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 2301674.5, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 42.73664, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 2301673.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 2315555.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 851626.25, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 2315555.5, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", + "analyte name": "6P_PBS_1_day1", + "assay bead identifier": "19", + "assay bead count": { + "value": 33.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 2329417.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 3373477.25, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 189.15958, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 3373476.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 2275974.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 468308.875, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 2275974.5, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_119", + "analyte name": "JN1_PBS_3_day2", + "assay bead identifier": "29", + "assay bead count": { + "value": 13.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 897272.1875, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 885829.5625, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 28.24384, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 885829.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 883969.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 149421.625, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 883969.625, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", + "analyte name": "JN1_PBS_1_day1", + "assay bead identifier": "33", + "assay bead count": { + "value": 12.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 905898.25, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 762248.1875, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 40.52594, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 762247.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 786455.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 259411.42188, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 786455.5625, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_125", + "analyte name": "Monitoring", + "assay bead identifier": "45", + "assay bead count": { + "value": 254.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 345674.6875, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 346534.65625, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 5.74274, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 346534.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 345879.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 14950.46094, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 345879.46875, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + } + ] } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -20.08752, - "unit": "RFU" + } + ], + "experimental data identifier": "BATCH_1", + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_181", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_180", - "data source feature": "fluorescence" + "custom information document": { + "BatchStopTime": "2024-10-18 12:15" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 1.0, + "unit": "(unitless)" + }, + "minimum assay bead count threshold setting": { + "value": 100, + "unit": "#" + }, + "custom information document": { + "ProtocolHeater": "Off", + "DDGate": "7000 to 17000", + "SampleTimeout": "50 sec", + "ProtocolAnalysis": "Off", + "ProtocolMicrosphere": "Map", + "PlateReadDirection": "Horizontal" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_128", + "measurement time": "2024-10-18T11:36:00+00:00", + "sample document": { + "sample identifier": "Donor14_3", + "location identifier": "A9", + "custom information document": { + "PanelName": "Panel-12345678910 [v1]", + "BeadType": "MagPlex" + } + }, + "assay bead count": { + "value": 429.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_129", + "analyte name": "6P_PBS_3_day2", + "assay bead identifier": "18", + "assay bead count": { + "value": 48.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 1774805.5, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 1680169.625, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 98.25063, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 1680169.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 1487875.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 800127.1875, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 1487876.375, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_132", + "analyte name": "6P_PBS_1_day1", + "assay bead identifier": "19", + "assay bead count": { + "value": 42.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 1481667.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 1323144.125, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 81.45841, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 1355186.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 1217721.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 610831.3125, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 1217721.75, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_135", + "analyte name": "JN1_PBS_3_day2", + "assay bead identifier": "29", + "assay bead count": { + "value": 43.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 377147.46875, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 401668.9375, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 48.77147, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 401668.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 374818.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 81777.70312, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 374819.0625, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_138", + "analyte name": "JN1_PBS_1_day1", + "assay bead identifier": "33", + "assay bead count": { + "value": 44.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 362970.71875, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 339309.4375, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 82.3735, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 339308.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 308544.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 160117.375, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 308544.78125, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_141", + "analyte name": "Monitoring", + "assay bead identifier": "45", + "assay bead count": { + "value": 252.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 347922.53125, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 348235.25, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 5.50459, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 348234.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 347821.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 14641.02246, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 347821.59375, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + } + ] } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" + } + ], + "experimental data identifier": "BATCH_1", + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_182", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_180", - "data source feature": "fluorescence" - } - ] + "custom information document": { + "BatchStopTime": "2024-10-18 12:15" } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 39.67603, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_184", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", - "data source feature": "fluorescence" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": -0.0, + "unit": "(unitless)" + }, + "minimum assay bead count threshold setting": { + "value": 100, + "unit": "#" + }, + "custom information document": { + "ProtocolHeater": "Off", + "DDGate": "7000 to 17000", + "SampleTimeout": "50 sec", + "ProtocolAnalysis": "Off", + "ProtocolMicrosphere": "Map", + "PlateReadDirection": "Horizontal" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_144", + "measurement time": "2024-10-18T11:36:00+00:00", + "sample document": { + "sample identifier": "Background", + "location identifier": "A10", + "custom information document": { + "PanelName": "Panel-12345678910 [v1]", + "BeadType": "MagPlex" + } + }, + "error aggregate document": { + "error document": [ + { + "error": "Not reported in file", + "error feature": "dilution factor setting" + } + ] + }, + "assay bead count": { + "value": 433.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_145", + "analyte name": "6P_PBS_3_day2", + "assay bead identifier": "18", + "assay bead count": { + "value": 86.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 1308.79028, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 1451.8645, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 62.75218, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 1313.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 1313.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 730.46558, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 1407.86011, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_148", + "analyte name": "6P_PBS_1_day1", + "assay bead identifier": "19", + "assay bead count": { + "value": 69.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 1124.09937, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 1240.57715, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 64.53037, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 0.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 757.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 666.33698, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 1210.05859, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_151", + "analyte name": "JN1_PBS_3_day2", + "assay bead identifier": "29", + "assay bead count": { + "value": 56.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 1410.78894, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 1558.65112, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 65.98465, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 0.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 1313.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 807.60101, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 1501.76404, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_154", + "analyte name": "JN1_PBS_1_day1", + "assay bead identifier": "33", + "assay bead count": { + "value": 95.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 1988.97815, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 2053.41968, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 45.73727, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 1427.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 1427.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 698.80328, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 2025.47534, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_157", + "analyte name": "Monitoring", + "assay bead identifier": "45", + "assay bead count": { + "value": 127.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 347898.34375, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 349188.59375, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 6.05924, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 349188.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 348506.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 16018.87988, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 348506.90625, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + } + ] } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" + } + ], + "experimental data identifier": "BATCH_1", + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_185", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", - "data source feature": "fluorescence" - } - ] + "custom information document": { + "BatchStopTime": "2024-10-18 12:15" } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 89.16589, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_187", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_186", - "data source feature": "fluorescence" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": -0.0, + "unit": "(unitless)" + }, + "minimum assay bead count threshold setting": { + "value": 100, + "unit": "#" + }, + "custom information document": { + "ProtocolHeater": "Off", + "DDGate": "7000 to 17000", + "SampleTimeout": "50 sec", + "ProtocolAnalysis": "Off", + "ProtocolMicrosphere": "Map", + "PlateReadDirection": "Horizontal" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_160", + "measurement time": "2024-10-18T11:36:00+00:00", + "sample document": { + "sample identifier": "Background", + "location identifier": "A11", + "custom information document": { + "PanelName": "Panel-12345678910 [v1]", + "BeadType": "MagPlex" + } + }, + "error aggregate document": { + "error document": [ + { + "error": "Not reported in file", + "error feature": "dilution factor setting" + } + ] + }, + "assay bead count": { + "value": 430.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_161", + "analyte name": "6P_PBS_3_day2", + "assay bead identifier": "18", + "assay bead count": { + "value": 98.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 1488.32056, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 1527.0166, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 51.33269, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 1256.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 1256.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 615.7077, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 1497.55078, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", + "analyte name": "6P_PBS_1_day1", + "assay bead identifier": "19", + "assay bead count": { + "value": 90.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 1220.98718, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 1262.1344, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 72.18934, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 0.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 1213.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 618.38751, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 1183.20581, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_167", + "analyte name": "JN1_PBS_3_day2", + "assay bead identifier": "29", + "assay bead count": { + "value": 50.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 1712.74585, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 2056.35474, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 143.79263, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 1900.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 1900.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 553.05914, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 1659.09875, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_170", + "analyte name": "JN1_PBS_1_day1", + "assay bead identifier": "33", + "assay bead count": { + "value": 101.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 1907.43652, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 1956.73633, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 52.14221, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 2371.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 2371.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 822.51318, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 1927.84387, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_173", + "analyte name": "Monitoring", + "assay bead identifier": "45", + "assay bead count": { + "value": 91.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 345997.5625, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 344818.21875, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 5.4385, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 344817.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 344614.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 14651.0791, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 344615.0, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + } + ] } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" + } + ], + "experimental data identifier": "BATCH_1", + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_188", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_186", - "data source feature": "fluorescence" - } - ] + "custom information document": { + "BatchStopTime": "2024-10-18 12:15" } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -2378.6875, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_190", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", - "data source feature": "fluorescence" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "detector gain setting": "xMAP INTELLIFLEX® High Sensitivity", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": -0.0, + "unit": "(unitless)" + }, + "minimum assay bead count threshold setting": { + "value": 100, + "unit": "#" + }, + "custom information document": { + "ProtocolHeater": "Off", + "DDGate": "7000 to 17000", + "SampleTimeout": "50 sec", + "ProtocolAnalysis": "Off", + "ProtocolMicrosphere": "Map", + "PlateReadDirection": "Horizontal" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_176", + "measurement time": "2024-10-18T11:36:00+00:00", + "sample document": { + "sample identifier": "Background", + "location identifier": "A12", + "custom information document": { + "PanelName": "Panel-12345678910 [v1]", + "BeadType": "MagPlex" + } + }, + "error aggregate document": { + "error document": [ + { + "error": "Not reported in file", + "error feature": "dilution factor setting" + } + ] + }, + "assay bead count": { + "value": 317.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", + "analyte name": "6P_PBS_3_day2", + "assay bead identifier": "18", + "assay bead count": { + "value": 66.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 1387.90881, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 1289.0946, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 56.99452, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 1392.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 1392.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 586.6936, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 1265.13281, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_180", + "analyte name": "6P_PBS_1_day1", + "assay bead identifier": "19", + "assay bead count": { + "value": 50.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 1266.28259, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 1429.48047, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 56.49734, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 1094.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 1094.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 530.39929, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 1383.1731, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", + "analyte name": "JN1_PBS_3_day2", + "assay bead identifier": "29", + "assay bead count": { + "value": 56.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 1544.80225, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 1528.52722, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 46.69062, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 2058.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 2058.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 564.90387, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 1522.06653, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_186", + "analyte name": "JN1_PBS_1_day1", + "assay bead identifier": "33", + "assay bead count": { + "value": 77.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 2071.86353, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 2052.59863, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 45.33967, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 1819.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 1819.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 757.81317, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 2043.09888, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", + "analyte name": "Monitoring", + "assay bead identifier": "45", + "assay bead count": { + "value": 68.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 344365.4375, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 345944.09375, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + }, + { + "statistical value": { + "value": 5.57576, + "unit": "(unitless)", + "has statistic datum role": "coefficient of variation role" + } + }, + { + "statistical value": { + "value": 345943.0, + "unit": "RFU", + "has statistic datum role": "mode value role" + } + }, + { + "statistical value": { + "value": 345843.0, + "unit": "RFU", + "has statistic datum role": "trimmed mode value role" + } + }, + { + "statistical value": { + "value": 16299.80469, + "unit": "(unitless)", + "has statistic datum role": "trimmed standard deviation role" + } + }, + { + "statistical value": { + "value": 345843.78125, + "unit": "RFU", + "has statistic datum role": "trimmed arithmetic mean role" + } + } + ] + } + } + ] + } + } + ] } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" + } + ], + "experimental data identifier": "BATCH_1", + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_191", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", - "data source feature": "fluorescence" - } - ] + "custom information document": { + "BatchStopTime": "2024-10-18 12:15" } } - ] - }, - "data system document": { - "ASM file identifier": "luminex_intelliflex_example_01.json", - "data system instance identifier": "SOME-PC", - "file name": "luminex_intelliflex_example_01.csv", - "UNC path": "tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_example_01.csv", - "ASM converter name": "allotropy_luminex_intelliflex", - "ASM converter version": "0.1.113", - "software name": "INTELLIFLEX", - "software version": "2.1.1015" - }, - "device system document": { - "equipment serial number": "SERIAL_12345", - "model number": "Intelliflex", - "calibration aggregate document": { - "calibration document": [ - { - "calibration name": "Calibration", - "calibration time": "2024-10-18T10:26:00+00:00", - "calibration report": "Calibrated" - }, - { - "calibration name": "Verification", - "calibration time": "2024-10-18T10:54:00+00:00", - "calibration report": "Verified" - }, - { - "calibration name": "Fluidics Test", - "calibration time": "2024-10-18T11:33:00+00:00", - "calibration report": "Verified" - } - ] } - } + ] } } diff --git a/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_single_dataset.json b/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_single_dataset.json index feae28915..60e3af80a 100644 --- a/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_single_dataset.json +++ b/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_single_dataset.json @@ -1,2414 +1,6 @@ { "$asm.manifest": "http://purl.allotrope.org/manifests/multi-analyte-profiling/BENCHLING/2024/09/multi-analyte-profiling.manifest", "multi analyte profiling aggregate document": { - "multi analyte profiling document": [ - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "multi analyte profiling analyzer", - "dilution factor setting": { - "value": -0.0, - "unit": "(unitless)" - } - } - ] - }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_0", - "measurement time": "2024-11-08T12:12:00+00:00", - "sample document": { - "sample identifier": "Unknown1", - "location identifier": "A1" - }, - "error aggregate document": { - "error document": [ - { - "error": "Not reported in file", - "error feature": "dilution factor setting" - } - ] - }, - "assay bead count": { - "value": 1022.0, - "unit": "#" - }, - "analyte aggregate document": { - "analyte document": [ - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", - "analyte name": "R25: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 28.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 130.55469, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_3", - "analyte name": "R25: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 28.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 6.69629, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_5", - "analyte name": "R27: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 43.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 101.68555, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", - "analyte name": "R27: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 43.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 6.28516, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_9", - "analyte name": "R29: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 45.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 117.87695, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_11", - "analyte name": "R29: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 45.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 6.27539, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", - "analyte name": "R42: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 37.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 99.15234, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_15", - "analyte name": "R42: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 37.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 7.0957, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_17", - "analyte name": "R44: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 32.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 117.19629, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", - "analyte name": "R44: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 32.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 5.87012, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_21", - "analyte name": "R46: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 31.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 117.51758, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_23", - "analyte name": "R46: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 31.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 7.52734, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", - "analyte name": "R48: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 37.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 96.92578, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_27", - "analyte name": "R48: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 37.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 5.60352, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_29", - "analyte name": "R61: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 32.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 123.01563, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", - "analyte name": "R61: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 32.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 6.33984, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_33", - "analyte name": "R63: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 38.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 121.04004, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_35", - "analyte name": "R63: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 38.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 7.25586, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", - "analyte name": "R65: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 33.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 122.23633, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_39", - "analyte name": "R65: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 33.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 6.91797, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_41", - "analyte name": "R67: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 38.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 118.92676, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", - "analyte name": "R67: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 38.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 6.91699, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_45", - "analyte name": "R72: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 27.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 124.41211, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_47", - "analyte name": "R72: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 27.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 5.98438, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", - "analyte name": "R74: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 47.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 118.2168, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_51", - "analyte name": "R74: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 47.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 7.49609, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_53", - "analyte name": "R77: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 43.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 119.7168, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", - "analyte name": "R77: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 43.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 7.9668, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - } - ] - } - } - ], - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "multi analyte profiling analyzer", - "dilution factor setting": { - "value": -0.0, - "unit": "(unitless)" - } - } - ] - }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_57", - "measurement time": "2024-11-08T12:12:00+00:00", - "sample document": { - "sample identifier": "Unknown13", - "location identifier": "B1" - }, - "error aggregate document": { - "error document": [ - { - "error": "Not reported in file", - "error feature": "dilution factor setting" - } - ] - }, - "assay bead count": { - "value": 928.0, - "unit": "#" - }, - "analyte aggregate document": { - "analyte document": [ - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_58", - "analyte name": "R25: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 30.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 129.34082, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_60", - "analyte name": "R25: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 30.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 8.27637, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_62", - "analyte name": "R27: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 31.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 98.7207, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_64", - "analyte name": "R27: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 31.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 6.09375, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_66", - "analyte name": "R29: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 27.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 117.69531, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_68", - "analyte name": "R29: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 27.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 6.64453, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_70", - "analyte name": "R42: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 33.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 105.50781, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_72", - "analyte name": "R42: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 33.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 8.84766, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_74", - "analyte name": "R44: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 30.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 119.65918, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_76", - "analyte name": "R44: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 30.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 7.29395, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_78", - "analyte name": "R46: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 25.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 122.50391, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_80", - "analyte name": "R46: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 25.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 6.38672, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_82", - "analyte name": "R48: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 35.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 99.77734, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_84", - "analyte name": "R48: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 35.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 6.52734, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", - "analyte name": "R61: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 27.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 127.06445, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_88", - "analyte name": "R61: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 27.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 5.57617, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_90", - "analyte name": "R63: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 29.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 124.65234, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", - "analyte name": "R63: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 29.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 6.69727, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_94", - "analyte name": "R65: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 37.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 120.28711, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_96", - "analyte name": "R65: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 37.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 6.76172, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", - "analyte name": "R67: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 39.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 118.68555, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_100", - "analyte name": "R67: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 39.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 6.75391, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_102", - "analyte name": "R72: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 41.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 131.11523, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", - "analyte name": "R72: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 41.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 5.0918, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_106", - "analyte name": "R74: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 42.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 116.93164, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_108", - "analyte name": "R74: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 42.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 6.58203, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", - "analyte name": "R77: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 38.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 113.65039, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_112", - "analyte name": "R77: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 38.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 6.49805, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - } - ] - } - } - ], - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "multi analyte profiling analyzer", - "dilution factor setting": { - "value": -0.0, - "unit": "(unitless)" - } - } - ] - }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_114", - "measurement time": "2024-11-08T12:12:00+00:00", - "sample document": { - "sample identifier": "Unknown25", - "location identifier": "C1" - }, - "error aggregate document": { - "error document": [ - { - "error": "Not reported in file", - "error feature": "dilution factor setting" - } - ] - }, - "assay bead count": { - "value": 964.0, - "unit": "#" - }, - "analyte aggregate document": { - "analyte document": [ - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_115", - "analyte name": "R25: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 33.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 125.48828, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_117", - "analyte name": "R25: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 33.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 6.93555, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_119", - "analyte name": "R27: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 29.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 97.64648, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_121", - "analyte name": "R27: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 29.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 6.48633, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_123", - "analyte name": "R29: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 44.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 122.93848, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_125", - "analyte name": "R29: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 44.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 8.65234, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_127", - "analyte name": "R42: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 34.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 105.80859, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_129", - "analyte name": "R42: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 34.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 6.125, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_131", - "analyte name": "R44: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 32.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 122.6377, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_133", - "analyte name": "R44: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 32.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 8.40332, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_135", - "analyte name": "R46: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 31.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 123.63086, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_137", - "analyte name": "R46: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 31.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 5.08398, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_139", - "analyte name": "R48: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 35.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 107.95508, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_141", - "analyte name": "R48: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 35.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 7.55273, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_143", - "analyte name": "R61: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 36.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 120.92773, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_145", - "analyte name": "R61: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 36.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 6.49512, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_147", - "analyte name": "R63: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 31.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 124.46094, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_149", - "analyte name": "R63: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 31.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 7.07227, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_151", - "analyte name": "R65: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 42.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 124.34082, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_153", - "analyte name": "R65: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 42.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 7.52441, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_155", - "analyte name": "R67: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 33.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 119.18945, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_157", - "analyte name": "R67: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 33.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 6.07227, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_159", - "analyte name": "R72: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 25.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 135.54297, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_161", - "analyte name": "R72: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 25.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 6.28711, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_163", - "analyte name": "R74: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 40.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 123.0, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_165", - "analyte name": "R74: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 40.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 5.56055, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_167", - "analyte name": "R77: RP1", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 37.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 124.20508, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - }, - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_169", - "analyte name": "R77: RP2", - "assay bead identifier": "N/A", - "assay bead count": { - "value": 37.0, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": 5.98047, - "unit": "RFU", - "has statistic datum role": "median role" - } - } - ] - } - } - ] - } - } - ] - } - } - ], - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" - } - } - } - ], "calculated data aggregate document": { "calculated data document": [ { @@ -3720,55 +1312,2463 @@ "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_165", "data source feature": "fluorescence" } - ] + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 124.20508, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_168", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_167", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 5.98047, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_170", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_169", + "data source feature": "fluorescence" + } + ] + } + } + ] + }, + "data system document": { + "ASM file identifier": "luminex_intelliflex_single_dataset.json", + "data system instance identifier": "", + "ASM converter name": "allotropy_luminex_intelliflex", + "ASM converter version": "0.1.118", + "file name": "luminex_intelliflex_single_dataset.csv", + "software name": "INTELLIFLEX", + "software version": "Luminex INTELLIFLEX Bundle - 2.0.1017/Luminex INTELLIFLEX Instrument Control - 4.7.33.0/Luminex INTELLIFLEX Services - 2.0.169.0/Luminex INTELLIFLEX Touchscreen - 2.0.101.0/Firmware Bootloader - 1.3.61/Firmware Executable Version - 2.0.15/Firmware Linux Kernel - 4.9.59/Firmware SD Image - 2.0.5/Shell - 1.0.0", + "UNC path": "tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_single_dataset.csv" + }, + "device system document": { + "equipment serial number": "IFLEXP24099001" + }, + "multi analyte profiling document": [ + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "dilution factor setting": { + "value": -0.0, + "unit": "(unitless)" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_0", + "measurement time": "2024-11-08T12:12:00+00:00", + "sample document": { + "sample identifier": "Unknown1", + "location identifier": "A1" + }, + "error aggregate document": { + "error document": [ + { + "error": "Not reported in file", + "error feature": "dilution factor setting" + } + ] + }, + "assay bead count": { + "value": 1022.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", + "analyte name": "R25: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 28.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 130.55469, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_3", + "analyte name": "R25: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 28.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 6.69629, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_5", + "analyte name": "R27: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 43.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 101.68555, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", + "analyte name": "R27: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 43.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 6.28516, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_9", + "analyte name": "R29: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 45.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 117.87695, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_11", + "analyte name": "R29: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 45.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 6.27539, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", + "analyte name": "R42: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 37.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 99.15234, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_15", + "analyte name": "R42: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 37.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 7.0957, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_17", + "analyte name": "R44: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 32.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 117.19629, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", + "analyte name": "R44: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 32.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 5.87012, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_21", + "analyte name": "R46: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 31.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 117.51758, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_23", + "analyte name": "R46: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 31.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 7.52734, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", + "analyte name": "R48: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 37.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 96.92578, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_27", + "analyte name": "R48: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 37.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 5.60352, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_29", + "analyte name": "R61: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 32.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 123.01563, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", + "analyte name": "R61: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 32.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 6.33984, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_33", + "analyte name": "R63: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 38.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 121.04004, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_35", + "analyte name": "R63: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 38.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 7.25586, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", + "analyte name": "R65: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 33.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 122.23633, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_39", + "analyte name": "R65: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 33.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 6.91797, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_41", + "analyte name": "R67: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 38.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 118.92676, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", + "analyte name": "R67: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 38.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 6.91699, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_45", + "analyte name": "R72: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 27.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 124.41211, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_47", + "analyte name": "R72: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 27.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 5.98438, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", + "analyte name": "R74: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 47.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 118.2168, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_51", + "analyte name": "R74: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 47.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 7.49609, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_53", + "analyte name": "R77: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 43.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 119.7168, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", + "analyte name": "R77: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 43.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 7.9668, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + } + ] + } + } + ], + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 124.20508, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_168", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_167", - "data source feature": "fluorescence" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "dilution factor setting": { + "value": -0.0, + "unit": "(unitless)" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_57", + "measurement time": "2024-11-08T12:12:00+00:00", + "sample document": { + "sample identifier": "Unknown13", + "location identifier": "B1" + }, + "error aggregate document": { + "error document": [ + { + "error": "Not reported in file", + "error feature": "dilution factor setting" + } + ] + }, + "assay bead count": { + "value": 928.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_58", + "analyte name": "R25: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 30.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 129.34082, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_60", + "analyte name": "R25: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 30.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 8.27637, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_62", + "analyte name": "R27: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 31.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 98.7207, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_64", + "analyte name": "R27: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 31.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 6.09375, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_66", + "analyte name": "R29: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 27.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 117.69531, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_68", + "analyte name": "R29: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 27.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 6.64453, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_70", + "analyte name": "R42: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 33.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 105.50781, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_72", + "analyte name": "R42: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 33.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 8.84766, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_74", + "analyte name": "R44: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 30.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 119.65918, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_76", + "analyte name": "R44: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 30.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 7.29395, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_78", + "analyte name": "R46: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 25.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 122.50391, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_80", + "analyte name": "R46: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 25.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 6.38672, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_82", + "analyte name": "R48: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 35.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 99.77734, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_84", + "analyte name": "R48: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 35.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 6.52734, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", + "analyte name": "R61: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 27.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 127.06445, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_88", + "analyte name": "R61: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 27.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 5.57617, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_90", + "analyte name": "R63: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 29.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 124.65234, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", + "analyte name": "R63: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 29.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 6.69727, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_94", + "analyte name": "R65: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 37.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 120.28711, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_96", + "analyte name": "R65: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 37.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 6.76172, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", + "analyte name": "R67: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 39.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 118.68555, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_100", + "analyte name": "R67: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 39.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 6.75391, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_102", + "analyte name": "R72: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 41.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 131.11523, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", + "analyte name": "R72: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 41.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 5.0918, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_106", + "analyte name": "R74: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 42.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 116.93164, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_108", + "analyte name": "R74: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 42.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 6.58203, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", + "analyte name": "R77: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 38.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 113.65039, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_112", + "analyte name": "R77: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 38.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 6.49805, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + } + ] } - ] + } + ], + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 5.98047, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_170", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_169", - "data source feature": "fluorescence" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "dilution factor setting": { + "value": -0.0, + "unit": "(unitless)" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_114", + "measurement time": "2024-11-08T12:12:00+00:00", + "sample document": { + "sample identifier": "Unknown25", + "location identifier": "C1" + }, + "error aggregate document": { + "error document": [ + { + "error": "Not reported in file", + "error feature": "dilution factor setting" + } + ] + }, + "assay bead count": { + "value": 964.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_115", + "analyte name": "R25: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 33.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 125.48828, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_117", + "analyte name": "R25: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 33.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 6.93555, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_119", + "analyte name": "R27: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 29.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 97.64648, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_121", + "analyte name": "R27: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 29.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 6.48633, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_123", + "analyte name": "R29: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 44.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 122.93848, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_125", + "analyte name": "R29: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 44.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 8.65234, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_127", + "analyte name": "R42: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 34.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 105.80859, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_129", + "analyte name": "R42: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 34.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 6.125, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_131", + "analyte name": "R44: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 32.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 122.6377, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_133", + "analyte name": "R44: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 32.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 8.40332, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_135", + "analyte name": "R46: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 31.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 123.63086, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_137", + "analyte name": "R46: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 31.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 5.08398, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_139", + "analyte name": "R48: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 35.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 107.95508, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_141", + "analyte name": "R48: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 35.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 7.55273, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_143", + "analyte name": "R61: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 36.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 120.92773, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_145", + "analyte name": "R61: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 36.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 6.49512, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_147", + "analyte name": "R63: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 31.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 124.46094, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_149", + "analyte name": "R63: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 31.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 7.07227, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_151", + "analyte name": "R65: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 42.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 124.34082, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_153", + "analyte name": "R65: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 42.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 7.52441, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_155", + "analyte name": "R67: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 33.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 119.18945, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_157", + "analyte name": "R67: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 33.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 6.07227, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_159", + "analyte name": "R72: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 25.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 135.54297, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_161", + "analyte name": "R72: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 25.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 6.28711, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_163", + "analyte name": "R74: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 40.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 123.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_165", + "analyte name": "R74: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 40.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 5.56055, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_167", + "analyte name": "R77: RP1", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 37.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 124.20508, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_169", + "analyte name": "R77: RP2", + "assay bead identifier": "N/A", + "assay bead count": { + "value": 37.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 5.98047, + "unit": "RFU", + "has statistic datum role": "median role" + } + } + ] + } + } + ] + } + } + ] } - ] + } + ], + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" } } - ] - }, - "data system document": { - "ASM file identifier": "luminex_intelliflex_single_dataset.json", - "data system instance identifier": "", - "file name": "luminex_intelliflex_single_dataset.csv", - "UNC path": "tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_single_dataset.csv", - "ASM converter name": "allotropy_luminex_intelliflex", - "ASM converter version": "0.1.103", - "software name": "INTELLIFLEX", - "software version": "Unknown" - }, - "device system document": { - "equipment serial number": "IFLEXP24099001" - } + } + ] } } diff --git a/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_v2_2.csv b/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_v2_2.csv new file mode 100644 index 000000000..ca63d80e7 --- /dev/null +++ b/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_v2_2.csv @@ -0,0 +1,11 @@ +MODEL NAME,INSTRUMENT TYPE,SERIAL NUMBER,SOFTWARE VERSION,CALIBRATION STATE,CALIBRATION LOT,CALIBRATION LOT EXPIRATION,CALIBRATION LOT EXPIRED,CALIBRATION TIMESTAMP,VERIFICATION STATE,VERIFICATION LOT,VERIFICATION LOT EXPIRATION,VERIFICATION LOT EXPIRED,VERIFICATION TIMESTAMP,FLUIDICS VER STATE,FLUIDICS VER TIMESTAMP,FLUIDICS 1 VER LOT,FLUIDICS 1 VER LOT EXPIRATION,FLUIDICS 1 VER LOT EXPIRED,FLUIDICS 2 VER LOT,FLUIDICS 2 VER LOT EXPIRATION,FLUIDICS 2 VER LOT EXPIRED,PLATE NAME,PLATE STATUS,PLATE START,PLATE END,ACTIVE USER,AUTHORIZED USER,SIGNING USER,PLATE TYPE NAME,WELL LOCATION,WELL TYPE,WELL STATUS,SAMPLE ID,DILUTION,PROTOCOL NAME,PROTOCOL VERSION,PANEL NAME,UPTAKE VOLUME,BEAD TYPE,WELL ACQUISITION START,WELL ACQUISITION END,TOTAL ACTIVE EVENTS,TOTAL CLASSIFIED EVENTS,TOTAL GATED EVENTS,TOTAL EVENTS,COUNT %CV,R25: RP1 ANALYTE NAME,R25: RP1 REGION,R25: RP1 MEDIAN,R25: RP1 BACKGROUND,R25: RP1 NET MEDIAN,R25: RP1 NET NORMALIZED MEDIAN,R25: RP1 MEAN,R25: RP1 COUNT,R25: RP1 %CV,R25: RP1 AVERAGE MFI,R25: RP1 REPLICATE %CV,R27: RP1 ANALYTE NAME,R27: RP1 REGION,R27: RP1 MEDIAN,R27: RP1 BACKGROUND,R27: RP1 NET MEDIAN,R27: RP1 NET NORMALIZED MEDIAN,R27: RP1 MEAN,R27: RP1 COUNT,R27: RP1 %CV,R27: RP1 AVERAGE MFI,R27: RP1 REPLICATE %CV,R29: RP1 ANALYTE NAME,R29: RP1 REGION,R29: RP1 MEDIAN,R29: RP1 BACKGROUND,R29: RP1 NET MEDIAN,R29: RP1 NET NORMALIZED MEDIAN,R29: RP1 MEAN,R29: RP1 COUNT,R29: RP1 %CV,R29: RP1 AVERAGE MFI,R29: RP1 REPLICATE %CV,R42: RP1 ANALYTE NAME,R42: RP1 REGION,R42: RP1 MEDIAN,R42: RP1 BACKGROUND,R42: RP1 NET MEDIAN,R42: RP1 NET NORMALIZED MEDIAN,R42: RP1 MEAN,R42: RP1 COUNT,R42: RP1 %CV,R42: RP1 AVERAGE MFI,R42: RP1 REPLICATE %CV,R44: RP1 ANALYTE NAME,R44: RP1 REGION,R44: RP1 MEDIAN,R44: RP1 BACKGROUND,R44: RP1 NET MEDIAN,R44: RP1 NET NORMALIZED MEDIAN,R44: RP1 MEAN,R44: RP1 COUNT,R44: RP1 %CV,R44: RP1 AVERAGE MFI,R44: RP1 REPLICATE %CV,R46: RP1 ANALYTE NAME,R46: RP1 REGION,R46: RP1 MEDIAN,R46: RP1 BACKGROUND,R46: RP1 NET MEDIAN,R46: RP1 NET NORMALIZED MEDIAN,R46: RP1 MEAN,R46: RP1 COUNT,R46: RP1 %CV,R46: RP1 AVERAGE MFI,R46: RP1 REPLICATE %CV,R48: RP1 ANALYTE NAME,R48: RP1 REGION,R48: RP1 MEDIAN,R48: RP1 BACKGROUND,R48: RP1 NET MEDIAN,R48: RP1 NET NORMALIZED MEDIAN,R48: RP1 MEAN,R48: RP1 COUNT,R48: RP1 %CV,R48: RP1 AVERAGE MFI,R48: RP1 REPLICATE %CV,R61: RP1 ANALYTE NAME,R61: RP1 REGION,R61: RP1 MEDIAN,R61: RP1 BACKGROUND,R61: RP1 NET MEDIAN,R61: RP1 NET NORMALIZED MEDIAN,R61: RP1 MEAN,R61: RP1 COUNT,R61: RP1 %CV,R61: RP1 AVERAGE MFI,R61: RP1 REPLICATE %CV,R63: RP1 ANALYTE NAME,R63: RP1 REGION,R63: RP1 MEDIAN,R63: RP1 BACKGROUND,R63: RP1 NET MEDIAN,R63: RP1 NET NORMALIZED MEDIAN,R63: RP1 MEAN,R63: RP1 COUNT,R63: RP1 %CV,R63: RP1 AVERAGE MFI,R63: RP1 REPLICATE %CV,R65: RP1 ANALYTE NAME,R65: RP1 REGION,R65: RP1 MEDIAN,R65: RP1 BACKGROUND,R65: RP1 NET MEDIAN,R65: RP1 NET NORMALIZED MEDIAN,R65: RP1 MEAN,R65: RP1 COUNT,R65: RP1 %CV,R65: RP1 AVERAGE MFI,R65: RP1 REPLICATE %CV,R67: RP1 ANALYTE NAME,R67: RP1 REGION,R67: RP1 MEDIAN,R67: RP1 BACKGROUND,R67: RP1 NET MEDIAN,R67: RP1 NET NORMALIZED MEDIAN,R67: RP1 MEAN,R67: RP1 COUNT,R67: RP1 %CV,R67: RP1 AVERAGE MFI,R67: RP1 REPLICATE %CV,R72: RP1 ANALYTE NAME,R72: RP1 REGION,R72: RP1 MEDIAN,R72: RP1 BACKGROUND,R72: RP1 NET MEDIAN,R72: RP1 NET NORMALIZED MEDIAN,R72: RP1 MEAN,R72: RP1 COUNT,R72: RP1 %CV,R72: RP1 AVERAGE MFI,R72: RP1 REPLICATE %CV,R74: RP1 ANALYTE NAME,R74: RP1 REGION,R74: RP1 MEDIAN,R74: RP1 BACKGROUND,R74: RP1 NET MEDIAN,R74: RP1 NET NORMALIZED MEDIAN,R74: RP1 MEAN,R74: RP1 COUNT,R74: RP1 %CV,R74: RP1 AVERAGE MFI,R74: RP1 REPLICATE %CV,R77: RP1 ANALYTE NAME,R77: RP1 REGION,R77: RP1 MEDIAN,R77: RP1 BACKGROUND,R77: RP1 NET MEDIAN,R77: RP1 NET NORMALIZED MEDIAN,R77: RP1 MEAN,R77: RP1 COUNT,R77: RP1 %CV,R77: RP1 AVERAGE MFI,R77: RP1 REPLICATE %CV, +xMAP INTELLIFLEX DR-SE,INTELLIFLEX,IFLXTEST001,Luminex INTELLIFLEX Bundle - 2.1.1015/Luminex INTELLIFLEX Instrument Control - 4.8.4.0/Luminex INTELLIFLEX Services - 2.1.160.0/Luminex INTELLIFLEX Touchscreen - 2.1.151.0/Firmware Bootloader - 1.0.34/Firmware Executable Version - 2.0.40/Firmware Linux Kernel - 4.9.59/Firmware SD Image - 1.3.17/Shell - N/A,Calibrated,CAL001,2026-07-09,False,2026-02-24 08:21:33 AM,Verified,VER001,2027-01-15,False,2026-02-25 11:11:28 AM,Verified,2026-02-25 11:13:49 AM,FLU001,2027-02-26,False,FLU002,2027-02-26,False,TEST_PLATE_001,Partial,2026-02-25 04:42:08 PM,2026-02-25 04:58:48 PM,N/A,TESTPC\TestUser,N/A,96 Well Plate,A1,U1,Dry,Sample_001,82,TestProtocol [v1],7,TestPanel [v1],50,MagPlex,2026-02-25 04:42:10 PM,2026-02-25 04:42:12 PM,0,0,0,0,0,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN, +xMAP INTELLIFLEX DR-SE,INTELLIFLEX,IFLXTEST001,Luminex INTELLIFLEX Bundle - 2.1.1015/Luminex INTELLIFLEX Instrument Control - 4.8.4.0/Luminex INTELLIFLEX Services - 2.1.160.0/Luminex INTELLIFLEX Touchscreen - 2.1.151.0/Firmware Bootloader - 1.0.34/Firmware Executable Version - 2.0.40/Firmware Linux Kernel - 4.9.59/Firmware SD Image - 1.3.17/Shell - N/A,Calibrated,CAL001,2026-07-09,False,2026-02-24 08:21:33 AM,Verified,VER001,2027-01-15,False,2026-02-25 11:11:28 AM,Verified,2026-02-25 11:13:49 AM,FLU001,2027-02-26,False,FLU002,2027-02-26,False,TEST_PLATE_001,Partial,2026-02-25 04:42:08 PM,2026-02-25 04:58:48 PM,N/A,TESTPC\TestUser,N/A,96 Well Plate,B1,U2,Warning,Sample_002,15,TestProtocol [v1],7,TestPanel [v1],50,MagPlex,2026-02-25 04:42:13 PM,2026-02-25 04:43:10 PM,87,87,98,334,40.99189898742187,HPV6,25,6.05021,0,10.27147,NaN,8.69832,17.65178,72.30468,20.6913,NaN,HPV11,27,7.23498,0,13.00171,NaN,6.08008,4.96774,67.91802,6.19515,NaN,HPV16,29,10.14464,0,18.74283,NaN,17.42142,3.32264,44.70957,21.78422,NaN,HPV18,42,9.044,0,30.31642,NaN,29.3806,6.06225,26.76566,34.34549,NaN,HPV31,44,15.82194,0,10.06287,NaN,9.93336,7.08497,29.59485,26.93472,NaN,HPV33,46,19.81225,0,16.20594,NaN,22.16973,5.33901,92.93344,21.66985,NaN,HPV45,48,11.5151,0,14.45707,NaN,12.93149,18.68229,31.04564,6.78953,NaN,HPV52,61,12.17782,0,8.079,NaN,10.28013,5.21202,39.64895,18.94993,NaN,HPV58,63,11.23133,0,11.31737,NaN,9.83732,4.50233,84.88653,15.7872,NaN,HPV35,65,47.42731,0,25.38637,NaN,49.04314,3.72552,36.74924,66.56967,NaN,HPV39,67,24.42733,0,22.34306,NaN,29.40136,7.05711,93.64199,14.11385,NaN,HPV51,72,5.0606,0,8.98452,NaN,10.70722,4.89885,117.41008,16.75217,NaN,HPV56,74,8.97217,0,13.69025,NaN,9.06144,13.10275,40.41042,8.28269,NaN,HPV59,77,5.72063,0,8.82517,NaN,6.53789,5.50752,67.29384,7.22755,NaN, +xMAP INTELLIFLEX DR-SE,INTELLIFLEX,IFLXTEST001,Luminex INTELLIFLEX Bundle - 2.1.1015/Luminex INTELLIFLEX Instrument Control - 4.8.4.0/Luminex INTELLIFLEX Services - 2.1.160.0/Luminex INTELLIFLEX Touchscreen - 2.1.151.0/Firmware Bootloader - 1.0.34/Firmware Executable Version - 2.0.40/Firmware Linux Kernel - 4.9.59/Firmware SD Image - 1.3.17/Shell - N/A,Calibrated,CAL001,2026-07-09,False,2026-02-24 08:21:33 AM,Verified,VER001,2027-01-15,False,2026-02-25 11:11:28 AM,Verified,2026-02-25 11:13:49 AM,FLU001,2027-02-26,False,FLU002,2027-02-26,False,TEST_PLATE_001,Partial,2026-02-25 04:42:08 PM,2026-02-25 04:58:48 PM,N/A,TESTPC\TestUser,N/A,96 Well Plate,C1,U3,Dry,Sample_003,29,TestProtocol [v1],7,TestPanel [v1],50,MagPlex,2026-02-25 04:42:27 PM,2026-02-25 04:42:28 PM,0,0,0,0,0,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN, +xMAP INTELLIFLEX DR-SE,INTELLIFLEX,IFLXTEST001,Luminex INTELLIFLEX Bundle - 2.1.1015/Luminex INTELLIFLEX Instrument Control - 4.8.4.0/Luminex INTELLIFLEX Services - 2.1.160.0/Luminex INTELLIFLEX Touchscreen - 2.1.151.0/Firmware Bootloader - 1.0.34/Firmware Executable Version - 2.0.40/Firmware Linux Kernel - 4.9.59/Firmware SD Image - 1.3.17/Shell - N/A,Calibrated,CAL001,2026-07-09,False,2026-02-24 08:21:33 AM,Verified,VER001,2027-01-15,False,2026-02-25 11:11:28 AM,Verified,2026-02-25 11:13:49 AM,FLU001,2027-02-26,False,FLU002,2027-02-26,False,TEST_PLATE_001,Partial,2026-02-25 04:42:08 PM,2026-02-25 04:58:48 PM,N/A,TESTPC\TestUser,N/A,96 Well Plate,D1,U4,Dry,Sample_004,18,TestProtocol [v1],7,TestPanel [v1],50,MagPlex,2026-02-25 04:42:28 PM,2026-02-25 04:42:30 PM,0,0,0,0,0,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN, +xMAP INTELLIFLEX DR-SE,INTELLIFLEX,IFLXTEST001,Luminex INTELLIFLEX Bundle - 2.1.1015/Luminex INTELLIFLEX Instrument Control - 4.8.4.0/Luminex INTELLIFLEX Services - 2.1.160.0/Luminex INTELLIFLEX Touchscreen - 2.1.151.0/Firmware Bootloader - 1.0.34/Firmware Executable Version - 2.0.40/Firmware Linux Kernel - 4.9.59/Firmware SD Image - 1.3.17/Shell - N/A,Calibrated,CAL001,2026-07-09,False,2026-02-24 08:21:33 AM,Verified,VER001,2027-01-15,False,2026-02-25 11:11:28 AM,Verified,2026-02-25 11:13:49 AM,FLU001,2027-02-26,False,FLU002,2027-02-26,False,TEST_PLATE_001,Partial,2026-02-25 04:42:08 PM,2026-02-25 04:58:48 PM,N/A,TESTPC\TestUser,N/A,96 Well Plate,E1,U5,Dry,Sample_005,66,TestProtocol [v1],7,TestPanel [v1],50,MagPlex,2026-02-25 04:42:30 PM,2026-02-25 04:42:32 PM,0,0,0,0,0,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN, +xMAP INTELLIFLEX DR-SE,INTELLIFLEX,IFLXTEST001,Luminex INTELLIFLEX Bundle - 2.1.1015/Luminex INTELLIFLEX Instrument Control - 4.8.4.0/Luminex INTELLIFLEX Services - 2.1.160.0/Luminex INTELLIFLEX Touchscreen - 2.1.151.0/Firmware Bootloader - 1.0.34/Firmware Executable Version - 2.0.40/Firmware Linux Kernel - 4.9.59/Firmware SD Image - 1.3.17/Shell - N/A,Calibrated,CAL001,2026-07-09,False,2026-02-24 08:21:33 AM,Verified,VER001,2027-01-15,False,2026-02-25 11:11:28 AM,Verified,2026-02-25 11:13:49 AM,FLU001,2027-02-26,False,FLU002,2027-02-26,False,TEST_PLATE_001,Partial,2026-02-25 04:42:08 PM,2026-02-25 04:58:48 PM,N/A,TESTPC\TestUser,N/A,96 Well Plate,F1,U6,Dry,Sample_006,64,TestProtocol [v1],7,TestPanel [v1],50,MagPlex,2026-02-25 04:42:32 PM,2026-02-25 04:42:34 PM,0,0,0,0,0,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN, +xMAP INTELLIFLEX DR-SE,INTELLIFLEX,IFLXTEST001,Luminex INTELLIFLEX Bundle - 2.1.1015/Luminex INTELLIFLEX Instrument Control - 4.8.4.0/Luminex INTELLIFLEX Services - 2.1.160.0/Luminex INTELLIFLEX Touchscreen - 2.1.151.0/Firmware Bootloader - 1.0.34/Firmware Executable Version - 2.0.40/Firmware Linux Kernel - 4.9.59/Firmware SD Image - 1.3.17/Shell - N/A,Calibrated,CAL001,2026-07-09,False,2026-02-24 08:21:33 AM,Verified,VER001,2027-01-15,False,2026-02-25 11:11:28 AM,Verified,2026-02-25 11:13:49 AM,FLU001,2027-02-26,False,FLU002,2027-02-26,False,TEST_PLATE_001,Partial,2026-02-25 04:42:08 PM,2026-02-25 04:58:48 PM,N/A,TESTPC\TestUser,N/A,96 Well Plate,G1,U7,Dry,Sample_007,12,TestProtocol [v1],7,TestPanel [v1],50,MagPlex,2026-02-25 04:42:34 PM,2026-02-25 04:42:36 PM,0,0,0,0,0,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN, +xMAP INTELLIFLEX DR-SE,INTELLIFLEX,IFLXTEST001,Luminex INTELLIFLEX Bundle - 2.1.1015/Luminex INTELLIFLEX Instrument Control - 4.8.4.0/Luminex INTELLIFLEX Services - 2.1.160.0/Luminex INTELLIFLEX Touchscreen - 2.1.151.0/Firmware Bootloader - 1.0.34/Firmware Executable Version - 2.0.40/Firmware Linux Kernel - 4.9.59/Firmware SD Image - 1.3.17/Shell - N/A,Calibrated,CAL001,2026-07-09,False,2026-02-24 08:21:33 AM,Verified,VER001,2027-01-15,False,2026-02-25 11:11:28 AM,Verified,2026-02-25 11:13:49 AM,FLU001,2027-02-26,False,FLU002,2027-02-26,False,TEST_PLATE_001,Partial,2026-02-25 04:42:08 PM,2026-02-25 04:58:48 PM,N/A,TESTPC\TestUser,N/A,96 Well Plate,H1,U8,Dry,Sample_008,97,TestProtocol [v1],7,TestPanel [v1],50,MagPlex,2026-02-25 04:42:36 PM,2026-02-25 04:42:38 PM,0,0,0,0,0,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN, +xMAP INTELLIFLEX DR-SE,INTELLIFLEX,IFLXTEST001,Luminex INTELLIFLEX Bundle - 2.1.1015/Luminex INTELLIFLEX Instrument Control - 4.8.4.0/Luminex INTELLIFLEX Services - 2.1.160.0/Luminex INTELLIFLEX Touchscreen - 2.1.151.0/Firmware Bootloader - 1.0.34/Firmware Executable Version - 2.0.40/Firmware Linux Kernel - 4.9.59/Firmware SD Image - 1.3.17/Shell - N/A,Calibrated,CAL001,2026-07-09,False,2026-02-24 08:21:33 AM,Verified,VER001,2027-01-15,False,2026-02-25 11:11:28 AM,Verified,2026-02-25 11:13:49 AM,FLU001,2027-02-26,False,FLU002,2027-02-26,False,TEST_PLATE_001,Partial,2026-02-25 04:42:08 PM,2026-02-25 04:58:48 PM,N/A,TESTPC\TestUser,N/A,96 Well Plate,A2,U9,Warning,Sample_009,7,TestProtocol [v1],7,TestPanel [v1],50,MagPlex,2026-02-25 04:42:38 PM,2026-02-25 04:43:56 PM,13,13,19,155,89.24913094081867,HPV6,25,19.12555,0,7.78473,NaN,7.89906,1.52072,0,14.88722,NaN,HPV11,27,15.72398,0,20.34682,NaN,17.54759,1.75424,32.59186,27.93493,NaN,HPV16,29,20.70302,0,9.14801,NaN,24.88002,3.25263,8.22218,13.75635,NaN,HPV18,42,20.20197,0,15.84007,NaN,10.84746,1.58314,0,33.93718,NaN,HPV31,44,0,0,0,NaN,0,0,0,0,NaN,HPV33,46,37.16727,0,31.18945,NaN,23.9486,1.31923,2.22577,33.45918,NaN,HPV45,48,0,0,0,NaN,0,0,0,0,NaN,HPV52,61,0,0,0,NaN,0,0,0,0,NaN,HPV58,63,12.09236,0,7.65294,NaN,10.16923,0.74232,0,18.50287,NaN,HPV35,65,44.88718,0,44.74632,NaN,33.32411,1.23291,0,15.91363,NaN,HPV39,67,0,0,0,NaN,0,0,0,0,NaN,HPV51,72,6.36546,0,12.05467,NaN,10.42246,1.71836,79.23277,8.23379,NaN,HPV56,74,0,0,0,NaN,0,0,0,0,NaN,HPV59,77,7.01101,0,18.12325,NaN,19.55433,1.96698,0,14.73418,NaN, +xMAP INTELLIFLEX DR-SE,INTELLIFLEX,IFLXTEST001,Luminex INTELLIFLEX Bundle - 2.1.1015/Luminex INTELLIFLEX Instrument Control - 4.8.4.0/Luminex INTELLIFLEX Services - 2.1.160.0/Luminex INTELLIFLEX Touchscreen - 2.1.151.0/Firmware Bootloader - 1.0.34/Firmware Executable Version - 2.0.40/Firmware Linux Kernel - 4.9.59/Firmware SD Image - 1.3.17/Shell - N/A,Calibrated,CAL001,2026-07-09,False,2026-02-24 08:21:33 AM,Verified,VER001,2027-01-15,False,2026-02-25 11:11:28 AM,Verified,2026-02-25 11:13:49 AM,FLU001,2027-02-26,False,FLU002,2027-02-26,False,TEST_PLATE_001,Partial,2026-02-25 04:42:08 PM,2026-02-25 04:58:48 PM,N/A,TESTPC\TestUser,N/A,96 Well Plate,B2,U10,Dry,Sample_010,17,TestProtocol [v1],7,TestPanel [v1],50,MagPlex,2026-02-25 04:43:13 PM,2026-02-25 04:43:14 PM,0,0,0,0,0,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN, diff --git a/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_v2_2.json b/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_v2_2.json new file mode 100644 index 000000000..f1ee1e5dc --- /dev/null +++ b/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_v2_2.json @@ -0,0 +1,20026 @@ +{ + "$asm.manifest": "http://purl.allotrope.org/manifests/multi-analyte-profiling/BENCHLING/2024/09/multi-analyte-profiling.manifest", + "multi analyte profiling aggregate document": { + "calculated data aggregate document": { + "calculated data document": [ + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_2", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_3", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_4", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_5", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_6", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_8", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_9", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_10", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_11", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_12", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_14", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_15", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_16", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_17", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_18", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_20", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_21", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_22", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_23", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_24", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_26", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_27", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_28", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_29", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_30", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_32", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_33", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_34", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_35", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_36", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_38", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_39", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_40", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_41", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_42", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_44", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_45", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_46", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_47", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_48", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_50", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_51", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_52", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_53", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_54", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_56", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_57", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_58", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_59", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_60", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_62", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_63", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_64", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_65", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_66", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_68", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_67", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_69", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_67", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_70", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_67", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_71", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_67", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_72", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_67", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_74", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_73", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_75", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_73", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_76", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_73", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_77", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_73", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_78", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_73", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_80", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_79", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_81", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_79", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_82", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_79", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_83", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_79", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_84", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_79", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 10.27147, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_87", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 20.6913, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_88", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_89", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_90", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_91", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 13.00171, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_93", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.19515, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_94", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_95", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_96", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_97", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 18.74283, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_99", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 21.78422, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_100", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_101", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_102", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_103", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 30.31642, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_105", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 34.34549, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_106", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_107", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_108", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_109", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 10.06287, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_111", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 26.93472, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_112", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_113", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_114", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_115", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 16.20594, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_117", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 21.66985, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_118", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_119", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_120", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_121", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 14.45707, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_123", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.78953, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_124", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_125", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_126", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_127", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 8.079, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_129", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_128", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 18.94993, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_130", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_128", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_131", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_128", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_132", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_128", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_133", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_128", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 11.31737, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_135", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_134", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 15.7872, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_136", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_134", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_137", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_134", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_138", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_134", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_139", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_134", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 25.38637, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_141", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_140", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 66.56967, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_142", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_140", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_143", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_140", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_144", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_140", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_145", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_140", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 22.34306, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_147", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_146", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 14.11385, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_148", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_146", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_149", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_146", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_150", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_146", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_151", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_146", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 8.98452, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_153", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_152", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 16.75217, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_154", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_152", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_155", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_152", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_156", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_152", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_157", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_152", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 13.69025, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_159", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_158", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 8.28269, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_160", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_158", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_161", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_158", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_162", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_158", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_163", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_158", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 8.82517, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_165", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 7.22755, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_166", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_167", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_168", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_169", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_172", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_171", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_173", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_171", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_174", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_171", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_175", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_171", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_176", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_171", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_178", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_179", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_180", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_181", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_182", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_184", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_185", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_186", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_187", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_188", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_190", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_191", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_192", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_193", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_194", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_196", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_195", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_197", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_195", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_198", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_195", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_199", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_195", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_200", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_195", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_202", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_201", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_203", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_201", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_204", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_201", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_205", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_201", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_206", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_201", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_208", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_207", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_209", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_207", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_210", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_207", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_211", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_207", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_212", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_207", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_214", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_213", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_215", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_213", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_216", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_213", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_217", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_213", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_218", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_213", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_220", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_219", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_221", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_219", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_222", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_219", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_223", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_219", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_224", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_219", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_226", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_225", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_227", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_225", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_228", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_225", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_229", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_225", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_230", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_225", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_232", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_231", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_233", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_231", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_234", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_231", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_235", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_231", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_236", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_231", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_238", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_237", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_239", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_237", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_240", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_237", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_241", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_237", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_242", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_237", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_244", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_243", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_245", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_243", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_246", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_243", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_247", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_243", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_248", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_243", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_250", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_249", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_251", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_249", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_252", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_249", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_253", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_249", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_254", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_249", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_257", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_256", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_258", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_256", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_259", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_256", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_260", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_256", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_261", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_256", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_263", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_262", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_264", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_262", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_265", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_262", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_266", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_262", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_267", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_262", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_269", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_268", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_270", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_268", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_271", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_268", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_272", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_268", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_273", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_268", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_275", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_274", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_276", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_274", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_277", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_274", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_278", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_274", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_279", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_274", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_281", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_280", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_282", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_280", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_283", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_280", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_284", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_280", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_285", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_280", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_287", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_286", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_288", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_286", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_289", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_286", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_290", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_286", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_291", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_286", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_293", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_292", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_294", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_292", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_295", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_292", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_296", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_292", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_297", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_292", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_299", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_298", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_300", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_298", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_301", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_298", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_302", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_298", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_303", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_298", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_305", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_304", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_306", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_304", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_307", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_304", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_308", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_304", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_309", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_304", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_311", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_310", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_312", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_310", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_313", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_310", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_314", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_310", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_315", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_310", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_317", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_316", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_318", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_316", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_319", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_316", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_320", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_316", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_321", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_316", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_323", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_322", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_324", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_322", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_325", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_322", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_326", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_322", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_327", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_322", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_329", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_328", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_330", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_328", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_331", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_328", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_332", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_328", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_333", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_328", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_335", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_334", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_336", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_334", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_337", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_334", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_338", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_334", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_339", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_334", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_342", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_341", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_343", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_341", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_344", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_341", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_345", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_341", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_346", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_341", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_348", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_347", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_349", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_347", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_350", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_347", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_351", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_347", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_352", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_347", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_354", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_353", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_355", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_353", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_356", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_353", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_357", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_353", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_358", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_353", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_360", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_359", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_361", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_359", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_362", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_359", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_363", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_359", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_364", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_359", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_366", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_365", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_367", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_365", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_368", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_365", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_369", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_365", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_370", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_365", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_372", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_371", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_373", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_371", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_374", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_371", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_375", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_371", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_376", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_371", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_378", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_377", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_379", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_377", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_380", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_377", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_381", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_377", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_382", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_377", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_384", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_383", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_385", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_383", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_386", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_383", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_387", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_383", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_388", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_383", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_390", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_389", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_391", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_389", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_392", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_389", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_393", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_389", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_394", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_389", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_396", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_395", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_397", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_395", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_398", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_395", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_399", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_395", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_400", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_395", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_402", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_401", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_403", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_401", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_404", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_401", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_405", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_401", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_406", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_401", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_408", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_407", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_409", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_407", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_410", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_407", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_411", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_407", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_412", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_407", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_414", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_413", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_415", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_413", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_416", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_413", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_417", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_413", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_418", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_413", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_420", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_419", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_421", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_419", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_422", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_419", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_423", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_419", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_424", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_419", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_427", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_426", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_428", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_426", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_429", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_426", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_430", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_426", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_431", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_426", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_433", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_432", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_434", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_432", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_435", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_432", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_436", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_432", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_437", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_432", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_439", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_438", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_440", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_438", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_441", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_438", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_442", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_438", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_443", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_438", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_445", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_444", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_446", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_444", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_447", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_444", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_448", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_444", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_449", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_444", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_451", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_450", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_452", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_450", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_453", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_450", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_454", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_450", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_455", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_450", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_457", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_456", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_458", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_456", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_459", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_456", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_460", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_456", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_461", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_456", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_463", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_462", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_464", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_462", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_465", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_462", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_466", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_462", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_467", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_462", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_469", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_468", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_470", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_468", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_471", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_468", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_472", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_468", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_473", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_468", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_475", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_474", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_476", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_474", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_477", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_474", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_478", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_474", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_479", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_474", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_481", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_480", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_482", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_480", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_483", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_480", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_484", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_480", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_485", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_480", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_487", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_486", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_488", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_486", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_489", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_486", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_490", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_486", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_491", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_486", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_493", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_492", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_494", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_492", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_495", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_492", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_496", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_492", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_497", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_492", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_499", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_498", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_500", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_498", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_501", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_498", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_502", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_498", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_503", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_498", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_505", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_504", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_506", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_504", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_507", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_504", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_508", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_504", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_509", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_504", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_512", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_511", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_513", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_511", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_514", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_511", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_515", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_511", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_516", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_511", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_518", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_517", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_519", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_517", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_520", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_517", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_521", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_517", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_522", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_517", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_524", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_523", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_525", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_523", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_526", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_523", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_527", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_523", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_528", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_523", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_530", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_529", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_531", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_529", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_532", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_529", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_533", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_529", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_534", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_529", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_536", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_535", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_537", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_535", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_538", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_535", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_539", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_535", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_540", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_535", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_542", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_541", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_543", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_541", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_544", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_541", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_545", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_541", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_546", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_541", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_548", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_547", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_549", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_547", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_550", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_547", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_551", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_547", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_552", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_547", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_554", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_553", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_555", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_553", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_556", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_553", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_557", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_553", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_558", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_553", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_560", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_559", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_561", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_559", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_562", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_559", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_563", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_559", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_564", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_559", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_566", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_565", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_567", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_565", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_568", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_565", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_569", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_565", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_570", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_565", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_572", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_571", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_573", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_571", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_574", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_571", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_575", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_571", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_576", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_571", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_578", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_577", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_579", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_577", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_580", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_577", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_581", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_577", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_582", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_577", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_584", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_583", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_585", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_583", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_586", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_583", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_587", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_583", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_588", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_583", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_590", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_589", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_591", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_589", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_592", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_589", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_593", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_589", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_594", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_589", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_597", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_596", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_598", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_596", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_599", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_596", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_600", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_596", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_601", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_596", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_603", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_602", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_604", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_602", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_605", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_602", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_606", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_602", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_607", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_602", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_609", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_608", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_610", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_608", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_611", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_608", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_612", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_608", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_613", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_608", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_615", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_614", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_616", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_614", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_617", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_614", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_618", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_614", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_619", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_614", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_621", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_620", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_622", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_620", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_623", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_620", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_624", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_620", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_625", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_620", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_627", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_626", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_628", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_626", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_629", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_626", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_630", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_626", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_631", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_626", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_633", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_632", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_634", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_632", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_635", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_632", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_636", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_632", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_637", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_632", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_639", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_638", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_640", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_638", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_641", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_638", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_642", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_638", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_643", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_638", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_645", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_644", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_646", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_644", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_647", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_644", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_648", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_644", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_649", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_644", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_651", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_650", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_652", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_650", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_653", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_650", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_654", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_650", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_655", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_650", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_657", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_656", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_658", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_656", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_659", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_656", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_660", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_656", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_661", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_656", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_663", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_662", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_664", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_662", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_665", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_662", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_666", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_662", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_667", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_662", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_669", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_668", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_670", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_668", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_671", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_668", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_672", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_668", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_673", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_668", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_675", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_674", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_676", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_674", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_677", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_674", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_678", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_674", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_679", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_674", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 7.78473, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_682", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_681", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 14.88722, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_683", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_681", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_684", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_681", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_685", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_681", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_686", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_681", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 20.34682, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_688", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_687", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 27.93493, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_689", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_687", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_690", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_687", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_691", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_687", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_692", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_687", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 9.14801, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_694", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_693", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 13.75635, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_695", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_693", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_696", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_693", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_697", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_693", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_698", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_693", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 15.84007, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_700", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_699", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 33.93718, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_701", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_699", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_702", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_699", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_703", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_699", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_704", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_699", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_706", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_705", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_707", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_705", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_708", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_705", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_709", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_705", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_710", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_705", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 31.18945, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_712", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_711", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 33.45918, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_713", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_711", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_714", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_711", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_715", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_711", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_716", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_711", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_718", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_717", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_719", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_717", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_720", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_717", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_721", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_717", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_722", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_717", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_724", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_723", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_725", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_723", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_726", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_723", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_727", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_723", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_728", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_723", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 7.65294, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_730", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_729", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 18.50287, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_731", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_729", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_732", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_729", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_733", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_729", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_734", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_729", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 44.74632, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_736", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_735", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 15.91363, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_737", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_735", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_738", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_735", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_739", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_735", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_740", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_735", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_742", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_741", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_743", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_741", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_744", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_741", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_745", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_741", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_746", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_741", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 12.05467, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_748", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_747", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 8.23379, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_749", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_747", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_750", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_747", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_751", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_747", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_752", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_747", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_754", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_753", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_755", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_753", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_756", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_753", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_757", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_753", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_758", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_753", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 18.12325, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_760", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_759", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 14.73418, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_761", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_759", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_762", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_759", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_763", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_759", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_764", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_759", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_767", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_766", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_768", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_766", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_769", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_766", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_770", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_766", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_771", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_766", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_773", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_772", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_774", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_772", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_775", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_772", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_776", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_772", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_777", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_772", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_779", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_778", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_780", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_778", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_781", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_778", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_782", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_778", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_783", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_778", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_785", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_784", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_786", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_784", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_787", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_784", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_788", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_784", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_789", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_784", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_791", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_790", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_792", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_790", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_793", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_790", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_794", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_790", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_795", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_790", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_797", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_796", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_798", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_796", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_799", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_796", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_800", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_796", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_801", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_796", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_803", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_802", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_804", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_802", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_805", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_802", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_806", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_802", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_807", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_802", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_809", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_808", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_810", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_808", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_811", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_808", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_812", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_808", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_813", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_808", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_815", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_814", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_816", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_814", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_817", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_814", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_818", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_814", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_819", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_814", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_821", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_820", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_822", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_820", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_823", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_820", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_824", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_820", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_825", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_820", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_827", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_826", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_828", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_826", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_829", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_826", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_830", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_826", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_831", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_826", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_833", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_832", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_834", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_832", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_835", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_832", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_836", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_832", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_837", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_832", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_839", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_838", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_840", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_838", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_841", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_838", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_842", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_838", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_843", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_838", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_845", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_844", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_846", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_844", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_847", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_844", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_848", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_844", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_849", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_844", + "data source feature": "fluorescence" + } + ] + } + } + ] + }, + "data system document": { + "ASM file identifier": "luminex_intelliflex_v2_2.json", + "data system instance identifier": "", + "ASM converter name": "allotropy_luminex_intelliflex", + "ASM converter version": "0.1.118", + "file name": "luminex_intelliflex_v2_2.csv", + "software name": "INTELLIFLEX", + "software version": "Luminex INTELLIFLEX Bundle - 2.1.1015/Luminex INTELLIFLEX Instrument Control - 4.8.4.0/Luminex INTELLIFLEX Services - 2.1.160.0/Luminex INTELLIFLEX Touchscreen - 2.1.151.0/Firmware Bootloader - 1.0.34/Firmware Executable Version - 2.0.40/Firmware Linux Kernel - 4.9.59/Firmware SD Image - 1.3.17/Shell - N/A", + "UNC path": "tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_v2_2.csv" + }, + "device system document": { + "equipment serial number": "IFLXTEST001" + }, + "multi analyte profiling document": [ + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 82.0, + "unit": "(unitless)" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_0", + "measurement time": "2026-02-25T16:42:08+00:00", + "sample document": { + "sample identifier": "Sample_001", + "location identifier": "A1", + "custom information document": { + "PanelName": "TestPanel [v1]", + "BeadType": "MagPlex" + } + }, + "error aggregate document": { + "error document": [ + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + } + ] + }, + "assay bead count": { + "value": 0.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", + "analyte name": "HPV6", + "assay bead identifier": "25", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", + "analyte name": "HPV11", + "assay bead identifier": "27", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", + "analyte name": "HPV16", + "assay bead identifier": "29", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", + "analyte name": "HPV18", + "assay bead identifier": "42", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", + "analyte name": "HPV31", + "assay bead identifier": "44", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", + "analyte name": "HPV33", + "assay bead identifier": "46", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", + "analyte name": "HPV45", + "assay bead identifier": "48", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", + "analyte name": "HPV52", + "assay bead identifier": "61", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", + "analyte name": "HPV58", + "assay bead identifier": "63", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", + "analyte name": "HPV35", + "assay bead identifier": "65", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", + "analyte name": "HPV39", + "assay bead identifier": "67", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_67", + "analyte name": "HPV51", + "assay bead identifier": "72", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_73", + "analyte name": "HPV56", + "assay bead identifier": "74", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_79", + "analyte name": "HPV59", + "assay bead identifier": "77", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + } + ] + }, + "custom information document": { + "TOTAL CLASSIFIED EVENTS": 0.0, + "TOTAL ACTIVE EVENTS": 0.0, + "COUNT %CV": 0.0, + "WELL ACQUISITION START": "2026-02-25 04:42:10 PM", + "TOTAL GATED EVENTS": 0.0, + "WELL ACQUISITION END": "2026-02-25 04:42:12 PM", + "WELL TYPE": "U1", + "WELL STATUS": "Dry", + "ModelName": "xMAP INTELLIFLEX DR-SE", + "PlateTypeName": "96 Well Plate", + "CalibrationLotExpiration": "2026-07-09", + "CalibrationTimestamp": "2026-02-24 08:21:33 AM", + "VerificationLotExpiration": "2027-01-15", + "Fluidics1VerLotExpired": "False", + "CalibrationLot": "CAL001", + "VerificationTimestamp": "2026-02-25 11:11:28 AM", + "CalibrationLotExpired": "False", + "AuthorizedUser": "TESTPC\\TestUser", + "FluidicsVerState": "Verified", + "Fluidics1VerLotExpiration": "2027-02-26", + "VerificationState": "Verified", + "VerificationLot": "VER001", + "VerificationLotExpired": "False", + "Fluidics2VerLotExpiration": "2027-02-26", + "FluidicsVerTimestamp": "2026-02-25 11:13:49 AM", + "Fluidics2VerLotExpired": "False", + "Fluidics1VerLot": "FLU001", + "CalibrationState": "Calibrated", + "PlateStatus": "Partial", + "Fluidics2VerLot": "FLU002" + } + } + ], + "analytical method identifier": "TestProtocol [v1]", + "method version": "7", + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" + }, + "custom information document": { + "BatchStopTime": "2026-02-25 04:58:48 PM" + } + }, + "analyst": "nan" + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 15.0, + "unit": "(unitless)" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_85", + "measurement time": "2026-02-25T16:42:08+00:00", + "sample document": { + "sample identifier": "Sample_002", + "location identifier": "B1", + "custom information document": { + "PanelName": "TestPanel [v1]", + "BeadType": "MagPlex" + } + }, + "error aggregate document": { + "error document": [ + { + "error": "NaN", + "error feature": "HPV6 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV11 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV16 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV18 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV31 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV33 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV45 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV52 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV58 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV35 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV39 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV51 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV56 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV59 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV59 " + } + ] + }, + "assay bead count": { + "value": 334.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", + "analyte name": "HPV6", + "assay bead identifier": "25", + "assay bead count": { + "value": 17.65178, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 6.05021, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 8.69832, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", + "analyte name": "HPV11", + "assay bead identifier": "27", + "assay bead count": { + "value": 4.96774, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 7.23498, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 6.08008, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", + "analyte name": "HPV16", + "assay bead identifier": "29", + "assay bead count": { + "value": 3.32264, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 10.14464, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 17.42142, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", + "analyte name": "HPV18", + "assay bead identifier": "42", + "assay bead count": { + "value": 6.06225, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 9.044, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 29.3806, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", + "analyte name": "HPV31", + "assay bead identifier": "44", + "assay bead count": { + "value": 7.08497, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 15.82194, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 9.93336, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", + "analyte name": "HPV33", + "assay bead identifier": "46", + "assay bead count": { + "value": 5.33901, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 19.81225, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 22.16973, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", + "analyte name": "HPV45", + "assay bead identifier": "48", + "assay bead count": { + "value": 18.68229, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 11.5151, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 12.93149, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_128", + "analyte name": "HPV52", + "assay bead identifier": "61", + "assay bead count": { + "value": 5.21202, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 12.17782, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 10.28013, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_134", + "analyte name": "HPV58", + "assay bead identifier": "63", + "assay bead count": { + "value": 4.50233, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 11.23133, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 9.83732, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_140", + "analyte name": "HPV35", + "assay bead identifier": "65", + "assay bead count": { + "value": 3.72552, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 47.42731, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 49.04314, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_146", + "analyte name": "HPV39", + "assay bead identifier": "67", + "assay bead count": { + "value": 7.05711, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 24.42733, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 29.40136, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_152", + "analyte name": "HPV51", + "assay bead identifier": "72", + "assay bead count": { + "value": 4.89885, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 5.0606, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 10.70722, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_158", + "analyte name": "HPV56", + "assay bead identifier": "74", + "assay bead count": { + "value": 13.10275, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 8.97217, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 9.06144, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", + "analyte name": "HPV59", + "assay bead identifier": "77", + "assay bead count": { + "value": 5.50752, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 5.72063, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 6.53789, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + } + ] + }, + "custom information document": { + "TOTAL CLASSIFIED EVENTS": 87.0, + "TOTAL ACTIVE EVENTS": 87.0, + "COUNT %CV": 40.99189898742187, + "WELL ACQUISITION START": "2026-02-25 04:42:13 PM", + "TOTAL GATED EVENTS": 98.0, + "WELL ACQUISITION END": "2026-02-25 04:43:10 PM", + "WELL TYPE": "U2", + "WELL STATUS": "Warning" + } + } + ], + "analytical method identifier": "TestProtocol [v1]", + "method version": "7", + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" + }, + "custom information document": { + "BatchStopTime": "2026-02-25 04:58:48 PM" + } + }, + "analyst": "nan" + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 29.0, + "unit": "(unitless)" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_170", + "measurement time": "2026-02-25T16:42:08+00:00", + "sample document": { + "sample identifier": "Sample_003", + "location identifier": "C1", + "custom information document": { + "PanelName": "TestPanel [v1]", + "BeadType": "MagPlex" + } + }, + "error aggregate document": { + "error document": [ + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + } + ] + }, + "assay bead count": { + "value": 0.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_171", + "analyte name": "HPV6", + "assay bead identifier": "25", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", + "analyte name": "HPV11", + "assay bead identifier": "27", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", + "analyte name": "HPV16", + "assay bead identifier": "29", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", + "analyte name": "HPV18", + "assay bead identifier": "42", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_195", + "analyte name": "HPV31", + "assay bead identifier": "44", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_201", + "analyte name": "HPV33", + "assay bead identifier": "46", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_207", + "analyte name": "HPV45", + "assay bead identifier": "48", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_213", + "analyte name": "HPV52", + "assay bead identifier": "61", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_219", + "analyte name": "HPV58", + "assay bead identifier": "63", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_225", + "analyte name": "HPV35", + "assay bead identifier": "65", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_231", + "analyte name": "HPV39", + "assay bead identifier": "67", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_237", + "analyte name": "HPV51", + "assay bead identifier": "72", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_243", + "analyte name": "HPV56", + "assay bead identifier": "74", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_249", + "analyte name": "HPV59", + "assay bead identifier": "77", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + } + ] + }, + "custom information document": { + "TOTAL CLASSIFIED EVENTS": 0.0, + "TOTAL ACTIVE EVENTS": 0.0, + "COUNT %CV": 0.0, + "WELL ACQUISITION START": "2026-02-25 04:42:27 PM", + "TOTAL GATED EVENTS": 0.0, + "WELL ACQUISITION END": "2026-02-25 04:42:28 PM", + "WELL TYPE": "U3", + "WELL STATUS": "Dry" + } + } + ], + "analytical method identifier": "TestProtocol [v1]", + "method version": "7", + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" + }, + "custom information document": { + "BatchStopTime": "2026-02-25 04:58:48 PM" + } + }, + "analyst": "nan" + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 18.0, + "unit": "(unitless)" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_255", + "measurement time": "2026-02-25T16:42:08+00:00", + "sample document": { + "sample identifier": "Sample_004", + "location identifier": "D1", + "custom information document": { + "PanelName": "TestPanel [v1]", + "BeadType": "MagPlex" + } + }, + "error aggregate document": { + "error document": [ + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + } + ] + }, + "assay bead count": { + "value": 0.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_256", + "analyte name": "HPV6", + "assay bead identifier": "25", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_262", + "analyte name": "HPV11", + "assay bead identifier": "27", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_268", + "analyte name": "HPV16", + "assay bead identifier": "29", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_274", + "analyte name": "HPV18", + "assay bead identifier": "42", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_280", + "analyte name": "HPV31", + "assay bead identifier": "44", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_286", + "analyte name": "HPV33", + "assay bead identifier": "46", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_292", + "analyte name": "HPV45", + "assay bead identifier": "48", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_298", + "analyte name": "HPV52", + "assay bead identifier": "61", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_304", + "analyte name": "HPV58", + "assay bead identifier": "63", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_310", + "analyte name": "HPV35", + "assay bead identifier": "65", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_316", + "analyte name": "HPV39", + "assay bead identifier": "67", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_322", + "analyte name": "HPV51", + "assay bead identifier": "72", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_328", + "analyte name": "HPV56", + "assay bead identifier": "74", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_334", + "analyte name": "HPV59", + "assay bead identifier": "77", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + } + ] + }, + "custom information document": { + "TOTAL CLASSIFIED EVENTS": 0.0, + "TOTAL ACTIVE EVENTS": 0.0, + "COUNT %CV": 0.0, + "WELL ACQUISITION START": "2026-02-25 04:42:28 PM", + "TOTAL GATED EVENTS": 0.0, + "WELL ACQUISITION END": "2026-02-25 04:42:30 PM", + "WELL TYPE": "U4", + "WELL STATUS": "Dry" + } + } + ], + "analytical method identifier": "TestProtocol [v1]", + "method version": "7", + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" + }, + "custom information document": { + "BatchStopTime": "2026-02-25 04:58:48 PM" + } + }, + "analyst": "nan" + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 66.0, + "unit": "(unitless)" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_340", + "measurement time": "2026-02-25T16:42:08+00:00", + "sample document": { + "sample identifier": "Sample_005", + "location identifier": "E1", + "custom information document": { + "PanelName": "TestPanel [v1]", + "BeadType": "MagPlex" + } + }, + "error aggregate document": { + "error document": [ + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + } + ] + }, + "assay bead count": { + "value": 0.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_341", + "analyte name": "HPV6", + "assay bead identifier": "25", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_347", + "analyte name": "HPV11", + "assay bead identifier": "27", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_353", + "analyte name": "HPV16", + "assay bead identifier": "29", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_359", + "analyte name": "HPV18", + "assay bead identifier": "42", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_365", + "analyte name": "HPV31", + "assay bead identifier": "44", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_371", + "analyte name": "HPV33", + "assay bead identifier": "46", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_377", + "analyte name": "HPV45", + "assay bead identifier": "48", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_383", + "analyte name": "HPV52", + "assay bead identifier": "61", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_389", + "analyte name": "HPV58", + "assay bead identifier": "63", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_395", + "analyte name": "HPV35", + "assay bead identifier": "65", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_401", + "analyte name": "HPV39", + "assay bead identifier": "67", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_407", + "analyte name": "HPV51", + "assay bead identifier": "72", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_413", + "analyte name": "HPV56", + "assay bead identifier": "74", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_419", + "analyte name": "HPV59", + "assay bead identifier": "77", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + } + ] + }, + "custom information document": { + "TOTAL CLASSIFIED EVENTS": 0.0, + "TOTAL ACTIVE EVENTS": 0.0, + "COUNT %CV": 0.0, + "WELL ACQUISITION START": "2026-02-25 04:42:30 PM", + "TOTAL GATED EVENTS": 0.0, + "WELL ACQUISITION END": "2026-02-25 04:42:32 PM", + "WELL TYPE": "U5", + "WELL STATUS": "Dry" + } + } + ], + "analytical method identifier": "TestProtocol [v1]", + "method version": "7", + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" + }, + "custom information document": { + "BatchStopTime": "2026-02-25 04:58:48 PM" + } + }, + "analyst": "nan" + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 64.0, + "unit": "(unitless)" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_425", + "measurement time": "2026-02-25T16:42:08+00:00", + "sample document": { + "sample identifier": "Sample_006", + "location identifier": "F1", + "custom information document": { + "PanelName": "TestPanel [v1]", + "BeadType": "MagPlex" + } + }, + "error aggregate document": { + "error document": [ + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + } + ] + }, + "assay bead count": { + "value": 0.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_426", + "analyte name": "HPV6", + "assay bead identifier": "25", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_432", + "analyte name": "HPV11", + "assay bead identifier": "27", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_438", + "analyte name": "HPV16", + "assay bead identifier": "29", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_444", + "analyte name": "HPV18", + "assay bead identifier": "42", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_450", + "analyte name": "HPV31", + "assay bead identifier": "44", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_456", + "analyte name": "HPV33", + "assay bead identifier": "46", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_462", + "analyte name": "HPV45", + "assay bead identifier": "48", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_468", + "analyte name": "HPV52", + "assay bead identifier": "61", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_474", + "analyte name": "HPV58", + "assay bead identifier": "63", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_480", + "analyte name": "HPV35", + "assay bead identifier": "65", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_486", + "analyte name": "HPV39", + "assay bead identifier": "67", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_492", + "analyte name": "HPV51", + "assay bead identifier": "72", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_498", + "analyte name": "HPV56", + "assay bead identifier": "74", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_504", + "analyte name": "HPV59", + "assay bead identifier": "77", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + } + ] + }, + "custom information document": { + "TOTAL CLASSIFIED EVENTS": 0.0, + "TOTAL ACTIVE EVENTS": 0.0, + "COUNT %CV": 0.0, + "WELL ACQUISITION START": "2026-02-25 04:42:32 PM", + "TOTAL GATED EVENTS": 0.0, + "WELL ACQUISITION END": "2026-02-25 04:42:34 PM", + "WELL TYPE": "U6", + "WELL STATUS": "Dry" + } + } + ], + "analytical method identifier": "TestProtocol [v1]", + "method version": "7", + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" + }, + "custom information document": { + "BatchStopTime": "2026-02-25 04:58:48 PM" + } + }, + "analyst": "nan" + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 12.0, + "unit": "(unitless)" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_510", + "measurement time": "2026-02-25T16:42:08+00:00", + "sample document": { + "sample identifier": "Sample_007", + "location identifier": "G1", + "custom information document": { + "PanelName": "TestPanel [v1]", + "BeadType": "MagPlex" + } + }, + "error aggregate document": { + "error document": [ + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + } + ] + }, + "assay bead count": { + "value": 0.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_511", + "analyte name": "HPV6", + "assay bead identifier": "25", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_517", + "analyte name": "HPV11", + "assay bead identifier": "27", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_523", + "analyte name": "HPV16", + "assay bead identifier": "29", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_529", + "analyte name": "HPV18", + "assay bead identifier": "42", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_535", + "analyte name": "HPV31", + "assay bead identifier": "44", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_541", + "analyte name": "HPV33", + "assay bead identifier": "46", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_547", + "analyte name": "HPV45", + "assay bead identifier": "48", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_553", + "analyte name": "HPV52", + "assay bead identifier": "61", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_559", + "analyte name": "HPV58", + "assay bead identifier": "63", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_565", + "analyte name": "HPV35", + "assay bead identifier": "65", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_571", + "analyte name": "HPV39", + "assay bead identifier": "67", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_577", + "analyte name": "HPV51", + "assay bead identifier": "72", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_583", + "analyte name": "HPV56", + "assay bead identifier": "74", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_589", + "analyte name": "HPV59", + "assay bead identifier": "77", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + } + ] + }, + "custom information document": { + "TOTAL CLASSIFIED EVENTS": 0.0, + "TOTAL ACTIVE EVENTS": 0.0, + "COUNT %CV": 0.0, + "WELL ACQUISITION START": "2026-02-25 04:42:34 PM", + "TOTAL GATED EVENTS": 0.0, + "WELL ACQUISITION END": "2026-02-25 04:42:36 PM", + "WELL TYPE": "U7", + "WELL STATUS": "Dry" + } + } + ], + "analytical method identifier": "TestProtocol [v1]", + "method version": "7", + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" + }, + "custom information document": { + "BatchStopTime": "2026-02-25 04:58:48 PM" + } + }, + "analyst": "nan" + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 97.0, + "unit": "(unitless)" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_595", + "measurement time": "2026-02-25T16:42:08+00:00", + "sample document": { + "sample identifier": "Sample_008", + "location identifier": "H1", + "custom information document": { + "PanelName": "TestPanel [v1]", + "BeadType": "MagPlex" + } + }, + "error aggregate document": { + "error document": [ + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + } + ] + }, + "assay bead count": { + "value": 0.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_596", + "analyte name": "HPV6", + "assay bead identifier": "25", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_602", + "analyte name": "HPV11", + "assay bead identifier": "27", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_608", + "analyte name": "HPV16", + "assay bead identifier": "29", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_614", + "analyte name": "HPV18", + "assay bead identifier": "42", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_620", + "analyte name": "HPV31", + "assay bead identifier": "44", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_626", + "analyte name": "HPV33", + "assay bead identifier": "46", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_632", + "analyte name": "HPV45", + "assay bead identifier": "48", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_638", + "analyte name": "HPV52", + "assay bead identifier": "61", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_644", + "analyte name": "HPV58", + "assay bead identifier": "63", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_650", + "analyte name": "HPV35", + "assay bead identifier": "65", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_656", + "analyte name": "HPV39", + "assay bead identifier": "67", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_662", + "analyte name": "HPV51", + "assay bead identifier": "72", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_668", + "analyte name": "HPV56", + "assay bead identifier": "74", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_674", + "analyte name": "HPV59", + "assay bead identifier": "77", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + } + ] + }, + "custom information document": { + "TOTAL CLASSIFIED EVENTS": 0.0, + "TOTAL ACTIVE EVENTS": 0.0, + "COUNT %CV": 0.0, + "WELL ACQUISITION START": "2026-02-25 04:42:36 PM", + "TOTAL GATED EVENTS": 0.0, + "WELL ACQUISITION END": "2026-02-25 04:42:38 PM", + "WELL TYPE": "U8", + "WELL STATUS": "Dry" + } + } + ], + "analytical method identifier": "TestProtocol [v1]", + "method version": "7", + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" + }, + "custom information document": { + "BatchStopTime": "2026-02-25 04:58:48 PM" + } + }, + "analyst": "nan" + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 7.0, + "unit": "(unitless)" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_680", + "measurement time": "2026-02-25T16:42:08+00:00", + "sample document": { + "sample identifier": "Sample_009", + "location identifier": "A2", + "custom information document": { + "PanelName": "TestPanel [v1]", + "BeadType": "MagPlex" + } + }, + "error aggregate document": { + "error document": [ + { + "error": "NaN", + "error feature": "HPV6 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV11 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV16 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV18 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV31 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV33 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV45 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV52 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV58 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV35 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV39 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV51 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV56 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV59 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV59 " + } + ] + }, + "assay bead count": { + "value": 155.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_681", + "analyte name": "HPV6", + "assay bead identifier": "25", + "assay bead count": { + "value": 1.52072, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 19.12555, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 7.89906, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_687", + "analyte name": "HPV11", + "assay bead identifier": "27", + "assay bead count": { + "value": 1.75424, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 15.72398, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 17.54759, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_693", + "analyte name": "HPV16", + "assay bead identifier": "29", + "assay bead count": { + "value": 3.25263, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 20.70302, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 24.88002, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_699", + "analyte name": "HPV18", + "assay bead identifier": "42", + "assay bead count": { + "value": 1.58314, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 20.20197, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 10.84746, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_705", + "analyte name": "HPV31", + "assay bead identifier": "44", + "assay bead count": { + "value": 0.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_711", + "analyte name": "HPV33", + "assay bead identifier": "46", + "assay bead count": { + "value": 1.31923, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 37.16727, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 23.9486, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_717", + "analyte name": "HPV45", + "assay bead identifier": "48", + "assay bead count": { + "value": 0.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_723", + "analyte name": "HPV52", + "assay bead identifier": "61", + "assay bead count": { + "value": 0.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_729", + "analyte name": "HPV58", + "assay bead identifier": "63", + "assay bead count": { + "value": 0.74232, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 12.09236, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 10.16923, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_735", + "analyte name": "HPV35", + "assay bead identifier": "65", + "assay bead count": { + "value": 1.23291, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 44.88718, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 33.32411, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_741", + "analyte name": "HPV39", + "assay bead identifier": "67", + "assay bead count": { + "value": 0.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_747", + "analyte name": "HPV51", + "assay bead identifier": "72", + "assay bead count": { + "value": 1.71836, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 6.36546, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 10.42246, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_753", + "analyte name": "HPV56", + "assay bead identifier": "74", + "assay bead count": { + "value": 0.0, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_759", + "analyte name": "HPV59", + "assay bead identifier": "77", + "assay bead count": { + "value": 1.96698, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": 7.01101, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": 19.55433, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + } + ] + }, + "custom information document": { + "TOTAL CLASSIFIED EVENTS": 13.0, + "TOTAL ACTIVE EVENTS": 13.0, + "COUNT %CV": 89.24913094081867, + "WELL ACQUISITION START": "2026-02-25 04:42:38 PM", + "TOTAL GATED EVENTS": 19.0, + "WELL ACQUISITION END": "2026-02-25 04:43:56 PM", + "WELL TYPE": "U9", + "WELL STATUS": "Warning" + } + } + ], + "analytical method identifier": "TestProtocol [v1]", + "method version": "7", + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" + }, + "custom information document": { + "BatchStopTime": "2026-02-25 04:58:48 PM" + } + }, + "analyst": "nan" + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 17.0, + "unit": "(unitless)" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_765", + "measurement time": "2026-02-25T16:42:08+00:00", + "sample document": { + "sample identifier": "Sample_010", + "location identifier": "B2", + "custom information document": { + "PanelName": "TestPanel [v1]", + "BeadType": "MagPlex" + } + }, + "error aggregate document": { + "error document": [ + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + } + ] + }, + "assay bead count": { + "value": 0.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_766", + "analyte name": "HPV6", + "assay bead identifier": "25", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_772", + "analyte name": "HPV11", + "assay bead identifier": "27", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_778", + "analyte name": "HPV16", + "assay bead identifier": "29", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_784", + "analyte name": "HPV18", + "assay bead identifier": "42", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_790", + "analyte name": "HPV31", + "assay bead identifier": "44", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_796", + "analyte name": "HPV33", + "assay bead identifier": "46", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_802", + "analyte name": "HPV45", + "assay bead identifier": "48", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_808", + "analyte name": "HPV52", + "assay bead identifier": "61", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_814", + "analyte name": "HPV58", + "assay bead identifier": "63", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_820", + "analyte name": "HPV35", + "assay bead identifier": "65", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_826", + "analyte name": "HPV39", + "assay bead identifier": "67", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_832", + "analyte name": "HPV51", + "assay bead identifier": "72", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_838", + "analyte name": "HPV56", + "assay bead identifier": "74", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_844", + "analyte name": "HPV59", + "assay bead identifier": "77", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + } + ] + }, + "custom information document": { + "TOTAL CLASSIFIED EVENTS": 0.0, + "TOTAL ACTIVE EVENTS": 0.0, + "COUNT %CV": 0.0, + "WELL ACQUISITION START": "2026-02-25 04:43:13 PM", + "TOTAL GATED EVENTS": 0.0, + "WELL ACQUISITION END": "2026-02-25 04:43:14 PM", + "WELL TYPE": "U10", + "WELL STATUS": "Dry" + } + } + ], + "analytical method identifier": "TestProtocol [v1]", + "method version": "7", + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" + }, + "custom information document": { + "BatchStopTime": "2026-02-25 04:58:48 PM" + } + }, + "analyst": "nan" + } + ] + } +} From bb39f70968a5d5810ca601eaa590972e2ef0ef17 Mon Sep 17 00:00:00 2001 From: Nathan Stender Date: Mon, 20 Apr 2026 15:30:53 -0400 Subject: [PATCH 2/2] fix: Reorder test JSON keys to match existing file conventions Reduces diff noise in existing test files by aligning key ordering with main, making the actual content changes easy to review. Co-Authored-By: Claude Opus 4.6 --- .../luminex_intelliflex_example_01.json | 3942 +-- .../luminex_intelliflex_single_dataset.json | 2738 +- .../testdata/luminex_intelliflex_v2_2.json | 25426 ++++++++-------- 3 files changed, 16053 insertions(+), 16053 deletions(-) diff --git a/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_example_01.json b/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_example_01.json index dc2d3b06c..5ee82dc3e 100644 --- a/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_example_01.json +++ b/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_example_01.json @@ -1,1967 +1,6 @@ { "$asm.manifest": "http://purl.allotrope.org/manifests/multi-analyte-profiling/BENCHLING/2024/09/multi-analyte-profiling.manifest", "multi analyte profiling aggregate document": { - "calculated data aggregate document": { - "calculated data document": [ - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 2614633.5, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_2", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 2614633.5, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_3", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 2233798.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_5", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_4", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 2233798.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_6", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_4", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 1358538.625, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_8", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 1358538.625, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_9", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 1342086.5, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_11", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_10", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 1342086.5, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_12", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_10", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -1793.78125, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_14", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -1793.78125, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_15", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 2578317.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_18", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_17", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 2578317.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_17", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 2134953.75, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_21", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_20", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 2134953.75, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_22", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_20", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 840306.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_24", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_23", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 840306.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_23", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 803230.6875, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_27", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_26", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 803230.6875, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_28", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_26", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -2628.75, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_30", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_29", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -2628.75, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_29", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 1506666.875, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_34", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_33", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 1506666.875, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_35", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_33", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 1458435.125, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_36", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 1458435.125, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_38", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_36", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 306082.40625, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_40", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_39", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 306082.40625, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_41", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_39", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 314847.46875, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_42", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 314847.46875, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_44", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_42", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 2051.1875, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_46", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_45", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 2051.1875, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_47", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_45", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 573213.0625, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_50", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 573213.0625, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_51", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 576409.125, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_53", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_52", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 576409.125, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_54", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_52", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 98610.40625, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_56", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 98610.40625, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_57", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 86798.08594, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_59", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_58", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 86798.08594, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_60", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_58", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 2078.46875, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_62", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 2078.46875, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_63", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 290841.9375, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_66", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_65", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 290841.9375, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_67", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_65", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 283158.4375, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_69", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_68", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 283158.4375, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_70", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_68", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 40278.03906, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_72", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_71", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 40278.03906, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_73", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_71", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 34964.9375, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_75", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_74", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 34964.9375, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_76", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_74", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 1676.34375, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_78", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_77", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 1676.34375, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_79", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_77", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 69200.57812, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_82", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_81", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 69200.57812, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_83", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_81", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 59653.35156, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_85", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_84", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 59653.35156, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_84", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 10147.15723, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_88", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_87", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 10147.15723, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_89", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_87", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 9690.39258, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_91", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_90", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 9690.39258, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_90", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 146.125, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_94", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_93", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 146.125, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_95", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_93", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 2624898.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_97", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 2624898.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_99", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_97", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 2330491.75, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_101", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_100", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 2330491.75, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_102", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_100", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 1426847.375, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_103", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 1426847.375, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_105", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_103", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 1426716.75, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_107", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_106", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 1426716.75, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_108", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_106", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 96.46875, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_109", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 96.46875, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_111", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_109", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 2624401.75, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_114", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_113", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 2624401.75, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_115", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_113", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 2328130.75, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_117", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 2328130.75, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_118", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 895767.0625, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_120", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_119", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 895767.0625, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_121", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_119", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 903915.5625, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_123", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 903915.5625, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_124", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -1069.4375, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_126", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_125", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -1069.4375, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_127", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_125", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 1773320.375, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_130", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_129", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 1773320.375, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_131", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_129", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 1480380.625, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_133", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_132", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 1480380.625, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_134", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_132", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 375642.34375, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_136", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_135", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 375642.34375, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_137", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_135", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 360988.03125, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_139", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_138", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 360988.03125, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_140", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_138", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 1178.40625, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_142", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_141", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 1178.40625, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_143", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_141", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -176.32446, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_146", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_145", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_147", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_145", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -162.27075, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_149", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_148", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_150", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_148", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -94.33728, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_152", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_151", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_153", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_151", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 6.28052, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_155", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_154", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_156", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_154", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 1154.21875, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_158", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_157", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_159", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_157", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 3.20581, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_162", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_161", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_163", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_161", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -65.38293, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_165", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_166", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 207.61963, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_168", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_167", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_169", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_167", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -75.26111, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_171", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_170", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_172", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_170", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -746.5625, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_174", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_173", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_175", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_173", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -97.20593, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_178", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_179", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -20.08752, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_181", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_180", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_182", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_180", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 39.67603, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_184", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_185", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 89.16589, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_187", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_186", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_188", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_186", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -2378.6875, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_190", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_191", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", - "data source feature": "fluorescence" - } - ] - } - } - ] - }, - "data system document": { - "ASM file identifier": "luminex_intelliflex_example_01.json", - "data system instance identifier": "SOME-PC", - "ASM converter name": "allotropy_luminex_intelliflex", - "ASM converter version": "0.1.118", - "file name": "luminex_intelliflex_example_01.csv", - "software name": "INTELLIFLEX", - "software version": "2.1.1015", - "UNC path": "tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_example_01.csv" - }, - "device system document": { - "equipment serial number": "SERIAL_12345", - "model number": "Intelliflex", - "calibration aggregate document": { - "calibration document": [ - { - "calibration name": "Calibration", - "calibration time": "2024-10-18T10:26:00+00:00", - "calibration report": "Calibrated" - }, - { - "calibration name": "Verification", - "calibration time": "2024-10-18T10:54:00+00:00", - "calibration report": "Verified" - }, - { - "calibration name": "Fluidics Test", - "calibration time": "2024-10-18T11:33:00+00:00", - "calibration report": "Verified" - } - ] - }, - "custom information document": { - "Country Code": "409", - "Version": "1" - } - }, "multi analyte profiling document": [ { "measurement aggregate document": { @@ -6870,19 +4909,1980 @@ } ] } - } - ], - "experimental data identifier": "BATCH_1", - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" + } + ], + "experimental data identifier": "BATCH_1", + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" + }, + "custom information document": { + "BatchStopTime": "2024-10-18 12:15" + } + } + } + ], + "calculated data aggregate document": { + "calculated data document": [ + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 2614633.5, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_2", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 2614633.5, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_3", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 2233798.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_5", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_4", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 2233798.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_6", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_4", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 1358538.625, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_8", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 1358538.625, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_9", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 1342086.5, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_11", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_10", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 1342086.5, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_12", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_10", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -1793.78125, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_14", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -1793.78125, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_15", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 2578317.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_18", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_17", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 2578317.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_17", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 2134953.75, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_21", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_20", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 2134953.75, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_22", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_20", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 840306.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_24", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_23", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 840306.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_23", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 803230.6875, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_27", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_26", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 803230.6875, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_28", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_26", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -2628.75, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_30", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_29", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -2628.75, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_29", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 1506666.875, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_34", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_33", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 1506666.875, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_35", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_33", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 1458435.125, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_36", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 1458435.125, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_38", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_36", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 306082.40625, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_40", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_39", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 306082.40625, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_41", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_39", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 314847.46875, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_42", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 314847.46875, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_44", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_42", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 2051.1875, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_46", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_45", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 2051.1875, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_47", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_45", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 573213.0625, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_50", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 573213.0625, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_51", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 576409.125, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_53", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_52", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 576409.125, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_54", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_52", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 98610.40625, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_56", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 98610.40625, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_57", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 86798.08594, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_59", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_58", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 86798.08594, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_60", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_58", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 2078.46875, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_62", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 2078.46875, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_63", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 290841.9375, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_66", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_65", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 290841.9375, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_67", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_65", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 283158.4375, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_69", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_68", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 283158.4375, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_70", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_68", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 40278.03906, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_72", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_71", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 40278.03906, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_73", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_71", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 34964.9375, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_75", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_74", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 34964.9375, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_76", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_74", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 1676.34375, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_78", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_77", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 1676.34375, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_79", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_77", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 69200.57812, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_82", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_81", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 69200.57812, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_83", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_81", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 59653.35156, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_85", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_84", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 59653.35156, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_84", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 10147.15723, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_88", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_87", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 10147.15723, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_89", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_87", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 9690.39258, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_91", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_90", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 9690.39258, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_90", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 146.125, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_94", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_93", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 146.125, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_95", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_93", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 2624898.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_97", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 2624898.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_99", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_97", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 2330491.75, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_101", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_100", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 2330491.75, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_102", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_100", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 1426847.375, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_103", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 1426847.375, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_105", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_103", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 1426716.75, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_107", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_106", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 1426716.75, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_108", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_106", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 96.46875, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_109", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 96.46875, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_111", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_109", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 2624401.75, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_114", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_113", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 2624401.75, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_115", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_113", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 2328130.75, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_117", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 2328130.75, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_118", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 895767.0625, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_120", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_119", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 895767.0625, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_121", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_119", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 903915.5625, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_123", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 903915.5625, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_124", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -1069.4375, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_126", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_125", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -1069.4375, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_127", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_125", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 1773320.375, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_130", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_129", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 1773320.375, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_131", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_129", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 1480380.625, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_133", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_132", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 1480380.625, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_134", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_132", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 375642.34375, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_136", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_135", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 375642.34375, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_137", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_135", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 360988.03125, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_139", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_138", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 360988.03125, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_140", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_138", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 1178.40625, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_142", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_141", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 1178.40625, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_143", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_141", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -176.32446, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_146", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_145", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_147", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_145", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -162.27075, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_149", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_148", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_150", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_148", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -94.33728, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_152", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_151", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_153", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_151", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 6.28052, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_155", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_154", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_156", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_154", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 1154.21875, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_158", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_157", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_159", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_157", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 3.20581, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_162", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_161", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_163", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_161", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -65.38293, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_165", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_166", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 207.61963, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_168", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_167", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_169", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_167", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -75.26111, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_171", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_170", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" }, - "custom information document": { - "BatchStopTime": "2024-10-18 12:15" + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_172", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_170", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -746.5625, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_174", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_173", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_175", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_173", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -97.20593, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_178", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_179", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -20.08752, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_181", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_180", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_182", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_180", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 39.67603, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_184", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_185", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 89.16589, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_187", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_186", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_188", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_186", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -2378.6875, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_190", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_191", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", + "data source feature": "fluorescence" + } + ] } } + ] + }, + "data system document": { + "ASM file identifier": "luminex_intelliflex_example_01.json", + "data system instance identifier": "SOME-PC", + "file name": "luminex_intelliflex_example_01.csv", + "UNC path": "tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_example_01.csv", + "ASM converter name": "allotropy_luminex_intelliflex", + "ASM converter version": "0.1.118", + "software name": "INTELLIFLEX", + "software version": "2.1.1015" + }, + "device system document": { + "equipment serial number": "SERIAL_12345", + "model number": "Intelliflex", + "calibration aggregate document": { + "calibration document": [ + { + "calibration name": "Calibration", + "calibration time": "2024-10-18T10:26:00+00:00", + "calibration report": "Calibrated" + }, + { + "calibration name": "Verification", + "calibration time": "2024-10-18T10:54:00+00:00", + "calibration report": "Verified" + }, + { + "calibration name": "Fluidics Test", + "calibration time": "2024-10-18T11:33:00+00:00", + "calibration report": "Verified" + } + ] + }, + "custom information document": { + "Country Code": "409", + "Version": "1" } - ] + } } } diff --git a/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_single_dataset.json b/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_single_dataset.json index 60e3af80a..14381f308 100644 --- a/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_single_dataset.json +++ b/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_single_dataset.json @@ -1,1367 +1,6 @@ { "$asm.manifest": "http://purl.allotrope.org/manifests/multi-analyte-profiling/BENCHLING/2024/09/multi-analyte-profiling.manifest", "multi analyte profiling aggregate document": { - "calculated data aggregate document": { - "calculated data document": [ - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 130.55469, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_2", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 6.69629, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_4", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_3", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 101.68555, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_6", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_5", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 6.28516, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_8", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 117.87695, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_10", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_9", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 6.27539, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_12", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_11", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 99.15234, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_14", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 7.0957, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_16", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_15", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 117.19629, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_18", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_17", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 5.87012, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_20", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 117.51758, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_22", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_21", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 7.52734, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_24", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_23", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 96.92578, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_26", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 5.60352, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_28", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_27", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 123.01563, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_30", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_29", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 6.33984, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_32", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 121.04004, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_34", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_33", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 7.25586, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_36", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_35", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 122.23633, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_38", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 6.91797, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_40", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_39", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 118.92676, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_42", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_41", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 6.91699, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_44", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 124.41211, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_46", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_45", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 5.98438, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_48", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_47", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 118.2168, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_50", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 7.49609, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_52", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_51", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 119.7168, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_54", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_53", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 7.9668, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_56", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 129.34082, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_59", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_58", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 8.27637, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_60", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 98.7207, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_63", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_62", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 6.09375, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_65", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_64", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 117.69531, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_67", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_66", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 6.64453, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_69", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_68", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 105.50781, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_71", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_70", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 8.84766, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_73", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_72", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 119.65918, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_75", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_74", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 7.29395, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_77", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_76", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 122.50391, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_79", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_78", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 6.38672, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_81", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_80", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 99.77734, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_83", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_82", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 6.52734, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_85", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_84", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 127.06445, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_87", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 5.57617, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_89", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_88", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 124.65234, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_91", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_90", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 6.69727, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_93", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 120.28711, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_95", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_94", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 6.76172, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_97", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_96", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 118.68555, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_99", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 6.75391, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_101", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_100", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 131.11523, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_103", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_102", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 5.0918, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_105", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 116.93164, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_107", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_106", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 6.58203, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_109", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_108", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 113.65039, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_111", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 6.49805, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_113", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_112", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 125.48828, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_115", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 6.93555, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_118", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_117", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 97.64648, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_120", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_119", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 6.48633, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_121", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 122.93848, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_124", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_123", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 8.65234, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_126", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_125", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 105.80859, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_128", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_127", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 6.125, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_130", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_129", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 122.6377, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_132", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_131", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 8.40332, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_134", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_133", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 123.63086, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_136", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_135", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 5.08398, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_138", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_137", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 107.95508, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_140", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_139", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 7.55273, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_142", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_141", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 120.92773, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_144", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_143", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 6.49512, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_146", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_145", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 124.46094, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_148", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_147", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 7.07227, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_150", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_149", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 124.34082, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_152", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_151", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 7.52441, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_154", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_153", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 119.18945, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_156", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_155", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 6.07227, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_158", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_157", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 135.54297, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_160", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_159", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 6.28711, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_162", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_161", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 123.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_163", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 5.56055, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_166", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_165", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 124.20508, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_168", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_167", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 5.98047, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_170", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_169", - "data source feature": "fluorescence" - } - ] - } - } - ] - }, - "data system document": { - "ASM file identifier": "luminex_intelliflex_single_dataset.json", - "data system instance identifier": "", - "ASM converter name": "allotropy_luminex_intelliflex", - "ASM converter version": "0.1.118", - "file name": "luminex_intelliflex_single_dataset.csv", - "software name": "INTELLIFLEX", - "software version": "Luminex INTELLIFLEX Bundle - 2.0.1017/Luminex INTELLIFLEX Instrument Control - 4.7.33.0/Luminex INTELLIFLEX Services - 2.0.169.0/Luminex INTELLIFLEX Touchscreen - 2.0.101.0/Firmware Bootloader - 1.3.61/Firmware Executable Version - 2.0.15/Firmware Linux Kernel - 4.9.59/Firmware SD Image - 2.0.5/Shell - 1.0.0", - "UNC path": "tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_single_dataset.csv" - }, - "device system document": { - "equipment serial number": "IFLEXP24099001" - }, "multi analyte profiling document": [ { "measurement aggregate document": { @@ -3760,15 +2399,1376 @@ } ] } - } - ], - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" + } + ], + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" + } + } + } + ], + "calculated data aggregate document": { + "calculated data document": [ + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 130.55469, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_2", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.69629, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_4", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_3", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 101.68555, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_6", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_5", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.28516, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_8", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 117.87695, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_10", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_9", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.27539, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_12", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_11", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 99.15234, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_14", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 7.0957, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_16", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_15", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 117.19629, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_18", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_17", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 5.87012, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_20", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 117.51758, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_22", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_21", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 7.52734, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_24", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_23", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 96.92578, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_26", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 5.60352, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_28", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_27", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 123.01563, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_30", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_29", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.33984, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_32", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 121.04004, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_34", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_33", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 7.25586, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_36", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_35", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 122.23633, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_38", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.91797, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_40", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_39", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 118.92676, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_42", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_41", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.91699, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_44", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 124.41211, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_46", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_45", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 5.98438, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_48", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_47", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 118.2168, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_50", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 7.49609, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_52", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_51", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 119.7168, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_54", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_53", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 7.9668, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_56", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 129.34082, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_59", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_58", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 8.27637, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_60", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 98.7207, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_63", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_62", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.09375, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_65", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_64", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 117.69531, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_67", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_66", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.64453, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_69", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_68", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 105.50781, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_71", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_70", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 8.84766, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_73", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_72", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 119.65918, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_75", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_74", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 7.29395, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_77", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_76", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 122.50391, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_79", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_78", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.38672, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_81", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_80", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 99.77734, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_83", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_82", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.52734, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_85", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_84", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 127.06445, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_87", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 5.57617, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_89", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_88", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 124.65234, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_91", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_90", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.69727, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_93", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 120.28711, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_95", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_94", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.76172, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_97", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_96", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 118.68555, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_99", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.75391, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_101", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_100", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 131.11523, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_103", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_102", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 5.0918, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_105", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 116.93164, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_107", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_106", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.58203, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_109", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_108", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 113.65039, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_111", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.49805, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_113", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_112", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 125.48828, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_115", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.93555, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_118", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_117", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 97.64648, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_120", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_119", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.48633, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_121", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 122.93848, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_124", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_123", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 8.65234, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_126", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_125", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 105.80859, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_128", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_127", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.125, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_130", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_129", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 122.6377, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_132", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_131", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 8.40332, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_134", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_133", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 123.63086, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_136", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_135", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 5.08398, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_138", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_137", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 107.95508, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_140", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_139", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 7.55273, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_142", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_141", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 120.92773, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_144", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_143", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.49512, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_146", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_145", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 124.46094, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_148", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_147", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 7.07227, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_150", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_149", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 124.34082, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_152", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_151", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 7.52441, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_154", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_153", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 119.18945, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_156", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_155", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.07227, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_158", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_157", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 135.54297, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_160", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_159", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.28711, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_162", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_161", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 123.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_163", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 5.56055, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_166", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_165", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 124.20508, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_168", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_167", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 5.98047, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_170", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_169", + "data source feature": "fluorescence" + } + ] } } - } - ] + ] + }, + "data system document": { + "ASM file identifier": "luminex_intelliflex_single_dataset.json", + "data system instance identifier": "", + "file name": "luminex_intelliflex_single_dataset.csv", + "UNC path": "tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_single_dataset.csv", + "ASM converter name": "allotropy_luminex_intelliflex", + "ASM converter version": "0.1.118", + "software name": "INTELLIFLEX", + "software version": "Luminex INTELLIFLEX Bundle - 2.0.1017/Luminex INTELLIFLEX Instrument Control - 4.7.33.0/Luminex INTELLIFLEX Services - 2.0.169.0/Luminex INTELLIFLEX Touchscreen - 2.0.101.0/Firmware Bootloader - 1.3.61/Firmware Executable Version - 2.0.15/Firmware Linux Kernel - 4.9.59/Firmware SD Image - 2.0.5/Shell - 1.0.0" + }, + "device system document": { + "equipment serial number": "IFLEXP24099001" + } } } diff --git a/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_v2_2.json b/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_v2_2.json index f1ee1e5dc..1f780723b 100644 --- a/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_v2_2.json +++ b/tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_v2_2.json @@ -1,11649 +1,36 @@ { "$asm.manifest": "http://purl.allotrope.org/manifests/multi-analyte-profiling/BENCHLING/2024/09/multi-analyte-profiling.manifest", "multi analyte profiling aggregate document": { - "calculated data aggregate document": { - "calculated data document": [ - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_2", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_3", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_4", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_5", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_6", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_8", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_9", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_10", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_11", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_12", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_14", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_15", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_16", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_17", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_18", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_20", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_21", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_22", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_23", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_24", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_26", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_27", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_28", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_29", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_30", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_32", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_33", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_34", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_35", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_36", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_38", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_39", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_40", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_41", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_42", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_44", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_45", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_46", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_47", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_48", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_50", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_51", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_52", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_53", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_54", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_56", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_57", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_58", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_59", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_60", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_62", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_63", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_64", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_65", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_66", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_68", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_67", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_69", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_67", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_70", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_67", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_71", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_67", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_72", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_67", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_74", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_73", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_75", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_73", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_76", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_73", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_77", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_73", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_78", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_73", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_80", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_79", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_81", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_79", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_82", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_79", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_83", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_79", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_84", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_79", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 10.27147, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_87", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 20.6913, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_88", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_89", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_90", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_91", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 13.00171, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_93", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 6.19515, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_94", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_95", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_96", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_97", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 18.74283, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_99", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 21.78422, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_100", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_101", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_102", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_103", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 30.31642, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_105", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 34.34549, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_106", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_107", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_108", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_109", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 10.06287, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_111", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 26.93472, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_112", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_113", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_114", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_115", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 16.20594, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_117", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 21.66985, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_118", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_119", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_120", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_121", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 14.45707, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_123", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 6.78953, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_124", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_125", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_126", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_127", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 8.079, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_129", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_128", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 18.94993, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_130", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_128", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_131", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_128", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_132", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_128", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_133", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_128", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 11.31737, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_135", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_134", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 15.7872, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_136", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_134", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_137", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_134", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_138", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_134", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_139", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_134", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 25.38637, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_141", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_140", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 66.56967, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_142", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_140", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_143", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_140", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_144", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_140", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_145", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_140", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 22.34306, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_147", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_146", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 14.11385, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_148", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_146", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_149", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_146", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_150", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_146", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_151", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_146", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 8.98452, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_153", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_152", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 16.75217, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_154", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_152", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_155", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_152", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_156", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_152", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_157", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_152", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 13.69025, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_159", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_158", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 8.28269, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_160", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_158", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_161", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_158", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_162", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_158", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_163", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_158", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 8.82517, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_165", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 7.22755, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_166", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_167", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_168", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_169", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_172", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_171", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_173", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_171", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_174", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_171", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_175", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_171", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_176", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_171", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_178", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_179", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_180", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_181", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_182", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_184", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_185", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_186", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_187", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_188", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_190", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_191", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_192", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_193", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_194", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_196", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_195", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_197", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_195", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_198", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_195", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_199", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_195", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_200", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_195", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_202", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_201", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_203", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_201", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_204", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_201", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_205", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_201", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_206", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_201", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_208", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_207", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_209", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_207", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_210", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_207", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_211", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_207", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_212", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_207", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_214", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_213", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_215", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_213", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_216", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_213", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_217", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_213", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_218", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_213", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_220", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_219", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_221", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_219", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_222", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_219", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_223", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_219", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_224", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_219", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_226", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_225", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_227", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_225", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_228", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_225", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_229", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_225", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_230", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_225", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_232", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_231", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_233", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_231", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_234", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_231", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_235", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_231", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_236", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_231", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_238", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_237", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_239", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_237", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_240", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_237", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_241", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_237", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_242", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_237", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_244", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_243", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_245", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_243", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_246", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_243", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_247", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_243", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_248", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_243", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_250", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_249", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_251", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_249", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_252", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_249", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_253", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_249", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_254", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_249", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_257", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_256", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_258", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_256", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_259", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_256", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_260", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_256", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_261", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_256", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_263", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_262", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_264", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_262", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_265", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_262", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_266", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_262", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_267", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_262", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_269", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_268", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_270", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_268", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_271", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_268", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_272", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_268", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_273", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_268", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_275", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_274", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_276", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_274", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_277", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_274", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_278", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_274", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_279", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_274", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_281", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_280", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_282", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_280", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_283", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_280", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_284", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_280", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_285", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_280", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_287", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_286", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_288", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_286", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_289", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_286", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_290", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_286", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_291", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_286", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_293", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_292", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_294", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_292", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_295", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_292", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_296", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_292", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_297", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_292", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_299", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_298", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_300", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_298", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_301", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_298", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_302", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_298", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_303", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_298", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_305", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_304", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_306", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_304", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_307", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_304", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_308", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_304", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_309", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_304", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_311", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_310", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_312", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_310", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_313", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_310", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_314", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_310", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_315", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_310", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_317", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_316", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_318", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_316", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_319", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_316", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_320", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_316", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_321", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_316", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_323", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_322", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_324", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_322", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_325", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_322", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_326", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_322", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_327", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_322", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_329", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_328", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_330", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_328", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_331", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_328", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_332", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_328", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_333", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_328", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_335", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_334", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_336", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_334", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_337", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_334", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_338", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_334", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_339", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_334", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_342", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_341", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_343", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_341", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_344", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_341", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_345", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_341", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_346", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_341", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_348", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_347", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_349", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_347", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_350", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_347", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_351", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_347", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_352", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_347", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_354", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_353", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_355", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_353", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_356", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_353", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_357", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_353", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_358", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_353", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_360", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_359", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_361", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_359", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_362", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_359", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_363", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_359", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_364", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_359", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_366", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_365", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_367", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_365", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_368", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_365", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_369", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_365", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_370", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_365", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_372", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_371", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_373", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_371", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_374", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_371", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_375", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_371", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_376", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_371", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_378", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_377", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_379", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_377", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_380", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_377", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_381", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_377", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_382", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_377", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_384", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_383", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_385", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_383", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_386", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_383", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_387", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_383", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_388", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_383", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_390", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_389", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_391", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_389", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_392", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_389", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_393", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_389", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_394", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_389", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_396", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_395", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_397", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_395", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_398", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_395", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_399", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_395", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_400", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_395", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_402", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_401", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_403", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_401", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_404", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_401", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_405", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_401", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_406", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_401", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_408", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_407", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_409", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_407", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_410", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_407", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_411", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_407", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_412", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_407", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_414", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_413", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_415", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_413", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_416", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_413", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_417", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_413", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_418", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_413", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_420", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_419", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_421", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_419", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_422", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_419", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_423", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_419", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_424", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_419", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_427", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_426", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_428", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_426", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_429", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_426", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_430", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_426", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_431", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_426", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_433", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_432", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_434", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_432", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_435", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_432", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_436", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_432", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_437", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_432", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_439", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_438", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_440", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_438", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_441", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_438", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_442", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_438", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_443", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_438", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_445", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_444", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_446", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_444", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_447", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_444", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_448", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_444", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_449", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_444", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_451", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_450", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_452", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_450", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_453", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_450", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_454", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_450", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_455", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_450", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_457", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_456", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_458", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_456", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_459", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_456", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_460", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_456", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_461", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_456", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_463", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_462", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_464", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_462", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_465", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_462", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_466", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_462", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_467", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_462", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_469", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_468", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_470", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_468", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_471", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_468", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_472", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_468", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_473", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_468", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_475", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_474", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_476", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_474", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_477", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_474", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_478", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_474", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_479", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_474", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_481", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_480", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_482", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_480", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_483", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_480", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_484", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_480", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_485", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_480", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_487", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_486", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_488", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_486", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_489", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_486", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_490", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_486", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_491", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_486", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_493", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_492", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_494", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_492", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_495", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_492", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_496", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_492", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_497", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_492", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_499", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_498", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_500", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_498", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_501", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_498", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_502", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_498", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_503", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_498", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_505", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_504", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_506", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_504", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_507", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_504", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_508", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_504", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_509", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_504", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_512", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_511", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_513", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_511", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_514", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_511", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_515", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_511", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_516", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_511", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_518", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_517", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_519", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_517", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_520", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_517", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_521", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_517", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_522", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_517", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_524", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_523", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_525", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_523", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_526", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_523", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_527", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_523", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_528", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_523", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_530", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_529", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_531", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_529", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_532", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_529", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_533", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_529", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_534", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_529", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_536", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_535", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_537", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_535", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_538", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_535", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_539", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_535", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_540", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_535", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_542", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_541", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_543", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_541", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_544", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_541", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_545", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_541", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_546", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_541", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_548", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_547", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_549", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_547", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_550", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_547", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_551", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_547", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_552", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_547", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_554", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_553", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_555", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_553", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_556", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_553", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_557", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_553", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_558", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_553", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_560", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_559", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_561", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_559", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_562", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_559", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_563", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_559", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_564", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_559", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_566", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_565", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_567", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_565", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_568", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_565", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_569", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_565", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_570", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_565", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_572", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_571", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_573", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_571", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_574", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_571", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_575", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_571", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_576", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_571", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_578", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_577", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_579", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_577", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_580", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_577", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_581", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_577", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_582", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_577", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_584", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_583", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_585", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_583", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_586", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_583", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_587", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_583", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_588", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_583", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_590", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_589", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_591", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_589", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_592", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_589", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_593", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_589", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_594", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_589", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_597", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_596", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_598", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_596", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_599", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_596", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_600", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_596", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_601", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_596", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_603", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_602", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_604", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_602", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_605", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_602", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_606", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_602", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_607", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_602", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_609", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_608", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_610", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_608", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_611", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_608", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_612", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_608", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_613", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_608", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_615", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_614", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_616", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_614", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_617", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_614", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_618", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_614", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_619", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_614", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_621", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_620", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_622", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_620", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_623", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_620", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_624", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_620", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_625", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_620", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_627", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_626", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_628", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_626", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_629", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_626", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_630", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_626", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_631", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_626", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_633", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_632", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_634", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_632", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_635", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_632", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_636", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_632", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_637", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_632", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_639", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_638", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_640", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_638", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_641", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_638", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_642", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_638", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_643", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_638", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_645", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_644", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_646", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_644", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_647", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_644", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_648", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_644", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_649", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_644", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_651", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_650", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_652", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_650", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_653", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_650", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_654", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_650", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_655", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_650", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_657", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_656", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_658", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_656", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_659", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_656", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_660", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_656", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_661", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_656", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_663", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_662", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_664", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_662", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_665", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_662", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_666", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_662", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_667", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_662", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_669", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_668", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_670", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_668", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_671", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_668", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_672", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_668", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_673", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_668", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_675", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_674", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_676", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_674", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_677", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_674", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_678", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_674", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_679", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_674", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 7.78473, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_682", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_681", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 14.88722, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_683", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_681", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_684", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_681", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_685", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_681", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_686", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_681", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 20.34682, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_688", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_687", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 27.93493, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_689", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_687", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_690", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_687", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_691", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_687", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_692", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_687", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 9.14801, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_694", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_693", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 13.75635, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_695", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_693", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_696", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_693", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_697", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_693", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_698", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_693", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 15.84007, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_700", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_699", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 33.93718, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_701", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_699", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_702", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_699", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_703", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_699", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_704", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_699", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_706", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_705", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_707", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_705", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_708", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_705", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_709", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_705", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_710", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_705", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 31.18945, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_712", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_711", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 33.45918, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_713", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_711", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_714", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_711", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_715", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_711", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_716", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_711", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_718", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_717", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_719", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_717", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_720", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_717", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_721", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_717", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_722", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_717", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_724", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_723", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_725", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_723", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_726", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_723", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_727", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_723", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_728", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_723", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 7.65294, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_730", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_729", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 18.50287, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_731", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_729", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_732", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_729", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_733", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_729", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_734", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_729", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 44.74632, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_736", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_735", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 15.91363, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_737", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_735", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_738", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_735", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_739", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_735", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_740", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_735", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_742", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_741", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_743", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_741", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_744", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_741", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_745", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_741", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_746", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_741", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 12.05467, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_748", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_747", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 8.23379, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_749", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_747", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_750", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_747", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_751", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_747", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_752", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_747", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_754", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_753", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_755", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_753", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_756", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_753", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_757", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_753", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_758", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_753", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": 18.12325, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_760", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_759", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": 14.73418, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_761", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_759", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_762", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_759", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": 0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_763", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_759", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_764", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_759", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_767", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_766", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_768", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_766", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_769", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_766", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_770", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_766", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_771", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_766", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_773", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_772", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_774", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_772", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_775", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_772", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_776", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_772", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_777", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_772", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_779", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_778", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_780", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_778", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_781", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_778", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_782", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_778", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_783", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_778", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_785", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_784", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_786", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_784", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_787", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_784", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_788", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_784", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_789", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_784", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_791", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_790", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_792", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_790", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_793", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_790", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_794", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_790", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_795", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_790", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_797", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_796", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_798", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_796", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_799", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_796", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_800", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_796", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_801", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_796", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_803", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_802", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_804", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_802", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_805", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_802", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_806", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_802", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_807", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_802", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_809", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_808", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_810", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_808", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_811", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_808", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_812", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_808", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_813", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_808", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_815", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_814", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_816", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_814", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_817", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_814", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_818", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_814", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_819", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_814", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_821", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_820", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_822", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_820", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_823", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_820", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_824", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_820", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_825", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_820", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_827", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_826", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_828", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_826", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_829", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_826", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_830", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_826", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_831", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_826", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_833", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_832", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_834", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_832", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_835", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_832", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_836", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_832", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_837", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_832", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_839", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_838", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_840", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_838", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_841", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_838", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_842", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_838", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_843", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_838", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_845", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_844", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Avg Net MFI", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_846", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_844", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "%CV of Replicates", - "calculated result": { - "value": -0.0, - "unit": "(unitless)" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_847", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_844", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Background", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_848", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_844", - "data source feature": "fluorescence" - } - ] - } - }, - { - "calculated data name": "Net Normalized Median", - "calculated result": { - "value": -0.0, - "unit": "RFU" - }, - "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_849", - "data source aggregate document": { - "data source document": [ - { - "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_844", - "data source feature": "fluorescence" - } - ] - } - } - ] - }, - "data system document": { - "ASM file identifier": "luminex_intelliflex_v2_2.json", - "data system instance identifier": "", - "ASM converter name": "allotropy_luminex_intelliflex", - "ASM converter version": "0.1.118", - "file name": "luminex_intelliflex_v2_2.csv", - "software name": "INTELLIFLEX", - "software version": "Luminex INTELLIFLEX Bundle - 2.1.1015/Luminex INTELLIFLEX Instrument Control - 4.8.4.0/Luminex INTELLIFLEX Services - 2.1.160.0/Luminex INTELLIFLEX Touchscreen - 2.1.151.0/Firmware Bootloader - 1.0.34/Firmware Executable Version - 2.0.40/Firmware Linux Kernel - 4.9.59/Firmware SD Image - 1.3.17/Shell - N/A", - "UNC path": "tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_v2_2.csv" - }, - "device system document": { - "equipment serial number": "IFLXTEST001" - }, - "multi analyte profiling document": [ - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "multi analyte profiling analyzer", - "sample volume setting": { - "value": 50.0, - "unit": "μL" - }, - "dilution factor setting": { - "value": 82.0, - "unit": "(unitless)" - } - } - ] - }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_0", - "measurement time": "2026-02-25T16:42:08+00:00", - "sample document": { - "sample identifier": "Sample_001", - "location identifier": "A1", - "custom information document": { - "PanelName": "TestPanel [v1]", - "BeadType": "MagPlex" - } - }, - "error aggregate document": { - "error document": [ - { - "error": "NaN", - "error feature": "HPV6 " - }, - { - "error": "NaN", - "error feature": "HPV6 " - }, - { - "error": "NaN", - "error feature": "HPV6 " - }, - { - "error": "NaN", - "error feature": "HPV6 " - }, - { - "error": "NaN", - "error feature": "HPV6 <%CV of Replicates>" - }, - { - "error": "NaN", - "error feature": "HPV6 " - }, - { - "error": "NaN", - "error feature": "HPV6 " - }, - { - "error": "NaN", - "error feature": "HPV11 " - }, - { - "error": "NaN", - "error feature": "HPV11 " - }, - { - "error": "NaN", - "error feature": "HPV11 " - }, - { - "error": "NaN", - "error feature": "HPV11 " - }, - { - "error": "NaN", - "error feature": "HPV11 <%CV of Replicates>" - }, - { - "error": "NaN", - "error feature": "HPV11 " - }, - { - "error": "NaN", - "error feature": "HPV11 " - }, - { - "error": "NaN", - "error feature": "HPV16 " - }, - { - "error": "NaN", - "error feature": "HPV16 " - }, - { - "error": "NaN", - "error feature": "HPV16 " - }, - { - "error": "NaN", - "error feature": "HPV16 " - }, - { - "error": "NaN", - "error feature": "HPV16 <%CV of Replicates>" - }, - { - "error": "NaN", - "error feature": "HPV16 " - }, - { - "error": "NaN", - "error feature": "HPV16 " - }, - { - "error": "NaN", - "error feature": "HPV18 " - }, - { - "error": "NaN", - "error feature": "HPV18 " - }, - { - "error": "NaN", - "error feature": "HPV18 " - }, - { - "error": "NaN", - "error feature": "HPV18 " - }, - { - "error": "NaN", - "error feature": "HPV18 <%CV of Replicates>" - }, - { - "error": "NaN", - "error feature": "HPV18 " - }, - { - "error": "NaN", - "error feature": "HPV18 " - }, - { - "error": "NaN", - "error feature": "HPV31 " - }, - { - "error": "NaN", - "error feature": "HPV31 " - }, - { - "error": "NaN", - "error feature": "HPV31 " - }, - { - "error": "NaN", - "error feature": "HPV31 " - }, - { - "error": "NaN", - "error feature": "HPV31 <%CV of Replicates>" - }, - { - "error": "NaN", - "error feature": "HPV31 " - }, - { - "error": "NaN", - "error feature": "HPV31 " - }, - { - "error": "NaN", - "error feature": "HPV33 " - }, - { - "error": "NaN", - "error feature": "HPV33 " - }, - { - "error": "NaN", - "error feature": "HPV33 " - }, - { - "error": "NaN", - "error feature": "HPV33 " - }, - { - "error": "NaN", - "error feature": "HPV33 <%CV of Replicates>" - }, - { - "error": "NaN", - "error feature": "HPV33 " - }, - { - "error": "NaN", - "error feature": "HPV33 " - }, - { - "error": "NaN", - "error feature": "HPV45 " - }, - { - "error": "NaN", - "error feature": "HPV45 " - }, - { - "error": "NaN", - "error feature": "HPV45 " - }, - { - "error": "NaN", - "error feature": "HPV45 " - }, - { - "error": "NaN", - "error feature": "HPV45 <%CV of Replicates>" - }, - { - "error": "NaN", - "error feature": "HPV45 " - }, - { - "error": "NaN", - "error feature": "HPV45 " - }, - { - "error": "NaN", - "error feature": "HPV52 " - }, - { - "error": "NaN", - "error feature": "HPV52 " - }, - { - "error": "NaN", - "error feature": "HPV52 " - }, - { - "error": "NaN", - "error feature": "HPV52 " - }, - { - "error": "NaN", - "error feature": "HPV52 <%CV of Replicates>" - }, - { - "error": "NaN", - "error feature": "HPV52 " - }, - { - "error": "NaN", - "error feature": "HPV52 " - }, - { - "error": "NaN", - "error feature": "HPV58 " - }, - { - "error": "NaN", - "error feature": "HPV58 " - }, - { - "error": "NaN", - "error feature": "HPV58 " - }, - { - "error": "NaN", - "error feature": "HPV58 " - }, - { - "error": "NaN", - "error feature": "HPV58 <%CV of Replicates>" - }, - { - "error": "NaN", - "error feature": "HPV58 " - }, - { - "error": "NaN", - "error feature": "HPV58 " - }, - { - "error": "NaN", - "error feature": "HPV35 " - }, - { - "error": "NaN", - "error feature": "HPV35 " - }, - { - "error": "NaN", - "error feature": "HPV35 " - }, - { - "error": "NaN", - "error feature": "HPV35 " - }, - { - "error": "NaN", - "error feature": "HPV35 <%CV of Replicates>" - }, - { - "error": "NaN", - "error feature": "HPV35 " - }, - { - "error": "NaN", - "error feature": "HPV35 " - }, - { - "error": "NaN", - "error feature": "HPV39 " - }, - { - "error": "NaN", - "error feature": "HPV39 " - }, - { - "error": "NaN", - "error feature": "HPV39 " - }, - { - "error": "NaN", - "error feature": "HPV39 " - }, - { - "error": "NaN", - "error feature": "HPV39 <%CV of Replicates>" - }, - { - "error": "NaN", - "error feature": "HPV39 " - }, - { - "error": "NaN", - "error feature": "HPV39 " - }, - { - "error": "NaN", - "error feature": "HPV51 " - }, - { - "error": "NaN", - "error feature": "HPV51 " - }, - { - "error": "NaN", - "error feature": "HPV51 " - }, - { - "error": "NaN", - "error feature": "HPV51 " - }, - { - "error": "NaN", - "error feature": "HPV51 <%CV of Replicates>" - }, - { - "error": "NaN", - "error feature": "HPV51 " - }, - { - "error": "NaN", - "error feature": "HPV51 " - }, - { - "error": "NaN", - "error feature": "HPV56 " - }, - { - "error": "NaN", - "error feature": "HPV56 " - }, - { - "error": "NaN", - "error feature": "HPV56 " - }, - { - "error": "NaN", - "error feature": "HPV56 " - }, - { - "error": "NaN", - "error feature": "HPV56 <%CV of Replicates>" - }, - { - "error": "NaN", - "error feature": "HPV56 " - }, - { - "error": "NaN", - "error feature": "HPV56 " - }, - { - "error": "NaN", - "error feature": "HPV59 " - }, - { - "error": "NaN", - "error feature": "HPV59 " - }, - { - "error": "NaN", - "error feature": "HPV59 " - }, - { - "error": "NaN", - "error feature": "HPV59 " - }, - { - "error": "NaN", - "error feature": "HPV59 <%CV of Replicates>" - }, - { - "error": "NaN", - "error feature": "HPV59 " - }, + "multi analyte profiling document": [ + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ { - "error": "NaN", - "error feature": "HPV59 " + "device type": "multi analyte profiling analyzer", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 82.0, + "unit": "(unitless)" + } } ] }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_0", + "measurement time": "2026-02-25T16:42:08+00:00", + "sample document": { + "sample identifier": "Sample_001", + "location identifier": "A1", + "custom information document": { + "PanelName": "TestPanel [v1]", + "BeadType": "MagPlex" + } + }, "assay bead count": { "value": 0.0, "unit": "#" @@ -12128,198 +515,478 @@ } ] }, - "custom information document": { - "TOTAL CLASSIFIED EVENTS": 0.0, - "TOTAL ACTIVE EVENTS": 0.0, - "COUNT %CV": 0.0, - "WELL ACQUISITION START": "2026-02-25 04:42:10 PM", - "TOTAL GATED EVENTS": 0.0, - "WELL ACQUISITION END": "2026-02-25 04:42:12 PM", - "WELL TYPE": "U1", - "WELL STATUS": "Dry", - "ModelName": "xMAP INTELLIFLEX DR-SE", - "PlateTypeName": "96 Well Plate", - "CalibrationLotExpiration": "2026-07-09", - "CalibrationTimestamp": "2026-02-24 08:21:33 AM", - "VerificationLotExpiration": "2027-01-15", - "Fluidics1VerLotExpired": "False", - "CalibrationLot": "CAL001", - "VerificationTimestamp": "2026-02-25 11:11:28 AM", - "CalibrationLotExpired": "False", - "AuthorizedUser": "TESTPC\\TestUser", - "FluidicsVerState": "Verified", - "Fluidics1VerLotExpiration": "2027-02-26", - "VerificationState": "Verified", - "VerificationLot": "VER001", - "VerificationLotExpired": "False", - "Fluidics2VerLotExpiration": "2027-02-26", - "FluidicsVerTimestamp": "2026-02-25 11:13:49 AM", - "Fluidics2VerLotExpired": "False", - "Fluidics1VerLot": "FLU001", - "CalibrationState": "Calibrated", - "PlateStatus": "Partial", - "Fluidics2VerLot": "FLU002" - } - } - ], - "analytical method identifier": "TestProtocol [v1]", - "method version": "7", - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" - }, - "custom information document": { - "BatchStopTime": "2026-02-25 04:58:48 PM" - } - }, - "analyst": "nan" - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "multi analyte profiling analyzer", - "sample volume setting": { - "value": 50.0, - "unit": "μL" - }, - "dilution factor setting": { - "value": 15.0, - "unit": "(unitless)" - } - } - ] - }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_85", - "measurement time": "2026-02-25T16:42:08+00:00", - "sample document": { - "sample identifier": "Sample_002", - "location identifier": "B1", - "custom information document": { - "PanelName": "TestPanel [v1]", - "BeadType": "MagPlex" - } - }, "error aggregate document": { "error document": [ { "error": "NaN", - "error feature": "HPV6 <%CV of Replicates>" + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " }, { "error": "NaN", - "error feature": "HPV6 " + "error feature": "HPV18 <%CV of Replicates>" }, { "error": "NaN", - "error feature": "HPV11 <%CV of Replicates>" + "error feature": "HPV18 " }, { "error": "NaN", - "error feature": "HPV11 " + "error feature": "HPV18 " }, { "error": "NaN", - "error feature": "HPV16 <%CV of Replicates>" + "error feature": "HPV31 " }, { "error": "NaN", - "error feature": "HPV16 " + "error feature": "HPV31 " }, { "error": "NaN", - "error feature": "HPV18 <%CV of Replicates>" + "error feature": "HPV31 " }, { "error": "NaN", - "error feature": "HPV18 " + "error feature": "HPV31 " }, { "error": "NaN", "error feature": "HPV31 <%CV of Replicates>" }, + { + "error": "NaN", + "error feature": "HPV31 " + }, { "error": "NaN", "error feature": "HPV31 " }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, { "error": "NaN", "error feature": "HPV33 <%CV of Replicates>" }, + { + "error": "NaN", + "error feature": "HPV33 " + }, { "error": "NaN", "error feature": "HPV33 " }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, { "error": "NaN", "error feature": "HPV45 <%CV of Replicates>" }, + { + "error": "NaN", + "error feature": "HPV45 " + }, { "error": "NaN", "error feature": "HPV45 " }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, { "error": "NaN", "error feature": "HPV52 <%CV of Replicates>" }, + { + "error": "NaN", + "error feature": "HPV52 " + }, { "error": "NaN", "error feature": "HPV52 " }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, { "error": "NaN", "error feature": "HPV58 <%CV of Replicates>" }, + { + "error": "NaN", + "error feature": "HPV58 " + }, { "error": "NaN", "error feature": "HPV58 " }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, { "error": "NaN", "error feature": "HPV35 <%CV of Replicates>" }, + { + "error": "NaN", + "error feature": "HPV35 " + }, { "error": "NaN", "error feature": "HPV35 " }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, { "error": "NaN", "error feature": "HPV39 <%CV of Replicates>" }, + { + "error": "NaN", + "error feature": "HPV39 " + }, { "error": "NaN", "error feature": "HPV39 " }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, { "error": "NaN", "error feature": "HPV51 <%CV of Replicates>" }, + { + "error": "NaN", + "error feature": "HPV51 " + }, { "error": "NaN", "error feature": "HPV51 " }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, { "error": "NaN", "error feature": "HPV56 <%CV of Replicates>" }, + { + "error": "NaN", + "error feature": "HPV56 " + }, { "error": "NaN", "error feature": "HPV56 " }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, { "error": "NaN", "error feature": "HPV59 <%CV of Replicates>" }, { - "error": "NaN", - "error feature": "HPV59 " + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + } + ] + }, + "custom information document": { + "TOTAL CLASSIFIED EVENTS": 0.0, + "TOTAL ACTIVE EVENTS": 0.0, + "COUNT %CV": 0.0, + "WELL ACQUISITION START": "2026-02-25 04:42:10 PM", + "TOTAL GATED EVENTS": 0.0, + "WELL ACQUISITION END": "2026-02-25 04:42:12 PM", + "WELL TYPE": "U1", + "WELL STATUS": "Dry", + "ModelName": "xMAP INTELLIFLEX DR-SE", + "PlateTypeName": "96 Well Plate", + "CalibrationLotExpiration": "2026-07-09", + "CalibrationTimestamp": "2026-02-24 08:21:33 AM", + "VerificationLotExpiration": "2027-01-15", + "Fluidics1VerLotExpired": "False", + "CalibrationLot": "CAL001", + "VerificationTimestamp": "2026-02-25 11:11:28 AM", + "CalibrationLotExpired": "False", + "AuthorizedUser": "TESTPC\\TestUser", + "FluidicsVerState": "Verified", + "Fluidics1VerLotExpiration": "2027-02-26", + "VerificationState": "Verified", + "VerificationLot": "VER001", + "VerificationLotExpired": "False", + "Fluidics2VerLotExpiration": "2027-02-26", + "FluidicsVerTimestamp": "2026-02-25 11:13:49 AM", + "Fluidics2VerLotExpired": "False", + "Fluidics1VerLot": "FLU001", + "CalibrationState": "Calibrated", + "PlateStatus": "Partial", + "Fluidics2VerLot": "FLU002" + } + } + ], + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" + }, + "custom information document": { + "BatchStopTime": "2026-02-25 04:58:48 PM" + }, + "analytical method identifier": "TestProtocol [v1]", + "method version": "7" + }, + "analyst": "nan" + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 15.0, + "unit": "(unitless)" + } } ] }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_85", + "measurement time": "2026-02-25T16:42:08+00:00", + "sample document": { + "sample identifier": "Sample_002", + "location identifier": "B1", + "custom information document": { + "PanelName": "TestPanel [v1]", + "BeadType": "MagPlex" + } + }, "assay bead count": { "value": 334.0, "unit": "#" @@ -12804,456 +1471,176 @@ } ] }, - "custom information document": { - "TOTAL CLASSIFIED EVENTS": 87.0, - "TOTAL ACTIVE EVENTS": 87.0, - "COUNT %CV": 40.99189898742187, - "WELL ACQUISITION START": "2026-02-25 04:42:13 PM", - "TOTAL GATED EVENTS": 98.0, - "WELL ACQUISITION END": "2026-02-25 04:43:10 PM", - "WELL TYPE": "U2", - "WELL STATUS": "Warning" - } - } - ], - "analytical method identifier": "TestProtocol [v1]", - "method version": "7", - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" - }, - "custom information document": { - "BatchStopTime": "2026-02-25 04:58:48 PM" - } - }, - "analyst": "nan" - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "multi analyte profiling analyzer", - "sample volume setting": { - "value": 50.0, - "unit": "μL" - }, - "dilution factor setting": { - "value": 29.0, - "unit": "(unitless)" - } - } - ] - }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_170", - "measurement time": "2026-02-25T16:42:08+00:00", - "sample document": { - "sample identifier": "Sample_003", - "location identifier": "C1", - "custom information document": { - "PanelName": "TestPanel [v1]", - "BeadType": "MagPlex" - } - }, "error aggregate document": { - "error document": [ - { - "error": "NaN", - "error feature": "HPV6 " - }, - { - "error": "NaN", - "error feature": "HPV6 " - }, - { - "error": "NaN", - "error feature": "HPV6 " - }, - { - "error": "NaN", - "error feature": "HPV6 " - }, - { - "error": "NaN", - "error feature": "HPV6 <%CV of Replicates>" - }, - { - "error": "NaN", - "error feature": "HPV6 " - }, - { - "error": "NaN", - "error feature": "HPV6 " - }, - { - "error": "NaN", - "error feature": "HPV11 " - }, - { - "error": "NaN", - "error feature": "HPV11 " - }, - { - "error": "NaN", - "error feature": "HPV11 " - }, - { - "error": "NaN", - "error feature": "HPV11 " - }, - { - "error": "NaN", - "error feature": "HPV11 <%CV of Replicates>" - }, - { - "error": "NaN", - "error feature": "HPV11 " - }, - { - "error": "NaN", - "error feature": "HPV11 " - }, - { - "error": "NaN", - "error feature": "HPV16 " - }, - { - "error": "NaN", - "error feature": "HPV16 " - }, - { - "error": "NaN", - "error feature": "HPV16 " - }, - { - "error": "NaN", - "error feature": "HPV16 " - }, - { - "error": "NaN", - "error feature": "HPV16 <%CV of Replicates>" - }, - { - "error": "NaN", - "error feature": "HPV16 " - }, - { - "error": "NaN", - "error feature": "HPV16 " - }, - { - "error": "NaN", - "error feature": "HPV18 " - }, - { - "error": "NaN", - "error feature": "HPV18 " - }, - { - "error": "NaN", - "error feature": "HPV18 " - }, - { - "error": "NaN", - "error feature": "HPV18 " - }, - { - "error": "NaN", - "error feature": "HPV18 <%CV of Replicates>" - }, - { - "error": "NaN", - "error feature": "HPV18 " - }, - { - "error": "NaN", - "error feature": "HPV18 " - }, - { - "error": "NaN", - "error feature": "HPV31 " - }, - { - "error": "NaN", - "error feature": "HPV31 " - }, - { - "error": "NaN", - "error feature": "HPV31 " - }, - { - "error": "NaN", - "error feature": "HPV31 " - }, - { - "error": "NaN", - "error feature": "HPV31 <%CV of Replicates>" - }, - { - "error": "NaN", - "error feature": "HPV31 " - }, - { - "error": "NaN", - "error feature": "HPV31 " - }, - { - "error": "NaN", - "error feature": "HPV33 " - }, - { - "error": "NaN", - "error feature": "HPV33 " - }, - { - "error": "NaN", - "error feature": "HPV33 " - }, - { - "error": "NaN", - "error feature": "HPV33 " - }, - { - "error": "NaN", - "error feature": "HPV33 <%CV of Replicates>" - }, - { - "error": "NaN", - "error feature": "HPV33 " - }, - { - "error": "NaN", - "error feature": "HPV33 " - }, - { - "error": "NaN", - "error feature": "HPV45 " - }, - { - "error": "NaN", - "error feature": "HPV45 " - }, + "error document": [ { "error": "NaN", - "error feature": "HPV45 " + "error feature": "HPV6 <%CV of Replicates>" }, { "error": "NaN", - "error feature": "HPV45 " + "error feature": "HPV6 " }, { "error": "NaN", - "error feature": "HPV45 <%CV of Replicates>" + "error feature": "HPV11 <%CV of Replicates>" }, { "error": "NaN", - "error feature": "HPV45 " + "error feature": "HPV11 " }, { "error": "NaN", - "error feature": "HPV45 " + "error feature": "HPV16 <%CV of Replicates>" }, { "error": "NaN", - "error feature": "HPV52 " + "error feature": "HPV16 " }, { "error": "NaN", - "error feature": "HPV52 " + "error feature": "HPV18 <%CV of Replicates>" }, { "error": "NaN", - "error feature": "HPV52 " + "error feature": "HPV18 " }, { "error": "NaN", - "error feature": "HPV52 " + "error feature": "HPV31 <%CV of Replicates>" }, { "error": "NaN", - "error feature": "HPV52 <%CV of Replicates>" + "error feature": "HPV31 " }, { "error": "NaN", - "error feature": "HPV52 " + "error feature": "HPV33 <%CV of Replicates>" }, { "error": "NaN", - "error feature": "HPV52 " + "error feature": "HPV33 " }, { "error": "NaN", - "error feature": "HPV58 " + "error feature": "HPV45 <%CV of Replicates>" }, { "error": "NaN", - "error feature": "HPV58 " + "error feature": "HPV45 " }, { "error": "NaN", - "error feature": "HPV58 " + "error feature": "HPV52 <%CV of Replicates>" }, { "error": "NaN", - "error feature": "HPV58 " + "error feature": "HPV52 " }, { "error": "NaN", "error feature": "HPV58 <%CV of Replicates>" }, - { - "error": "NaN", - "error feature": "HPV58 " - }, { "error": "NaN", "error feature": "HPV58 " }, - { - "error": "NaN", - "error feature": "HPV35 " - }, - { - "error": "NaN", - "error feature": "HPV35 " - }, - { - "error": "NaN", - "error feature": "HPV35 " - }, - { - "error": "NaN", - "error feature": "HPV35 " - }, { "error": "NaN", "error feature": "HPV35 <%CV of Replicates>" }, - { - "error": "NaN", - "error feature": "HPV35 " - }, { "error": "NaN", "error feature": "HPV35 " }, - { - "error": "NaN", - "error feature": "HPV39 " - }, - { - "error": "NaN", - "error feature": "HPV39 " - }, - { - "error": "NaN", - "error feature": "HPV39 " - }, - { - "error": "NaN", - "error feature": "HPV39 " - }, { "error": "NaN", "error feature": "HPV39 <%CV of Replicates>" }, - { - "error": "NaN", - "error feature": "HPV39 " - }, { "error": "NaN", "error feature": "HPV39 " }, - { - "error": "NaN", - "error feature": "HPV51 " - }, - { - "error": "NaN", - "error feature": "HPV51 " - }, - { - "error": "NaN", - "error feature": "HPV51 " - }, - { - "error": "NaN", - "error feature": "HPV51 " - }, { "error": "NaN", "error feature": "HPV51 <%CV of Replicates>" }, - { - "error": "NaN", - "error feature": "HPV51 " - }, { "error": "NaN", "error feature": "HPV51 " }, - { - "error": "NaN", - "error feature": "HPV56 " - }, - { - "error": "NaN", - "error feature": "HPV56 " - }, - { - "error": "NaN", - "error feature": "HPV56 " - }, - { - "error": "NaN", - "error feature": "HPV56 " - }, { "error": "NaN", "error feature": "HPV56 <%CV of Replicates>" }, - { - "error": "NaN", - "error feature": "HPV56 " - }, { "error": "NaN", "error feature": "HPV56 " }, - { - "error": "NaN", - "error feature": "HPV59 " - }, - { - "error": "NaN", - "error feature": "HPV59 " - }, - { - "error": "NaN", - "error feature": "HPV59 " - }, - { - "error": "NaN", - "error feature": "HPV59 " - }, { "error": "NaN", "error feature": "HPV59 <%CV of Replicates>" }, - { - "error": "NaN", - "error feature": "HPV59 " - }, { "error": "NaN", "error feature": "HPV59 " } ] }, + "custom information document": { + "TOTAL CLASSIFIED EVENTS": 87.0, + "TOTAL ACTIVE EVENTS": 87.0, + "COUNT %CV": 40.99189898742187, + "WELL ACQUISITION START": "2026-02-25 04:42:13 PM", + "TOTAL GATED EVENTS": 98.0, + "WELL ACQUISITION END": "2026-02-25 04:43:10 PM", + "WELL TYPE": "U2", + "WELL STATUS": "Warning" + } + } + ], + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" + }, + "custom information document": { + "BatchStopTime": "2026-02-25 04:58:48 PM" + }, + "analytical method identifier": "TestProtocol [v1]", + "method version": "7" + }, + "analyst": "nan" + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 29.0, + "unit": "(unitless)" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_170", + "measurement time": "2026-02-25T16:42:08+00:00", + "sample document": { + "sample identifier": "Sample_003", + "location identifier": "C1", + "custom information document": { + "PanelName": "TestPanel [v1]", + "BeadType": "MagPlex" + } + }, "assay bead count": { "value": 0.0, "unit": "#" @@ -13711,87 +2098,33 @@ "unit": "#" }, "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": -0.0, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": -0.0, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - } - ] - } - } - ] - } - } - ] - }, - "custom information document": { - "TOTAL CLASSIFIED EVENTS": 0.0, - "TOTAL ACTIVE EVENTS": 0.0, - "COUNT %CV": 0.0, - "WELL ACQUISITION START": "2026-02-25 04:42:27 PM", - "TOTAL GATED EVENTS": 0.0, - "WELL ACQUISITION END": "2026-02-25 04:42:28 PM", - "WELL TYPE": "U3", - "WELL STATUS": "Dry" - } - } - ], - "analytical method identifier": "TestProtocol [v1]", - "method version": "7", - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" - }, - "custom information document": { - "BatchStopTime": "2026-02-25 04:58:48 PM" - } - }, - "analyst": "nan" - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "multi analyte profiling analyzer", - "sample volume setting": { - "value": 50.0, - "unit": "μL" - }, - "dilution factor setting": { - "value": 18.0, - "unit": "(unitless)" + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] } } ] }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_255", - "measurement time": "2026-02-25T16:42:08+00:00", - "sample document": { - "sample identifier": "Sample_004", - "location identifier": "D1", - "custom information document": { - "PanelName": "TestPanel [v1]", - "BeadType": "MagPlex" - } - }, "error aggregate document": { "error document": [ { @@ -14188,6 +2521,60 @@ } ] }, + "custom information document": { + "TOTAL CLASSIFIED EVENTS": 0.0, + "TOTAL ACTIVE EVENTS": 0.0, + "COUNT %CV": 0.0, + "WELL ACQUISITION START": "2026-02-25 04:42:27 PM", + "TOTAL GATED EVENTS": 0.0, + "WELL ACQUISITION END": "2026-02-25 04:42:28 PM", + "WELL TYPE": "U3", + "WELL STATUS": "Dry" + } + } + ], + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" + }, + "custom information document": { + "BatchStopTime": "2026-02-25 04:58:48 PM" + }, + "analytical method identifier": "TestProtocol [v1]", + "method version": "7" + }, + "analyst": "nan" + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 18.0, + "unit": "(unitless)" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_255", + "measurement time": "2026-02-25T16:42:08+00:00", + "sample document": { + "sample identifier": "Sample_004", + "location identifier": "D1", + "custom information document": { + "PanelName": "TestPanel [v1]", + "BeadType": "MagPlex" + } + }, "assay bead count": { "value": 0.0, "unit": "#" @@ -14672,60 +3059,6 @@ } ] }, - "custom information document": { - "TOTAL CLASSIFIED EVENTS": 0.0, - "TOTAL ACTIVE EVENTS": 0.0, - "COUNT %CV": 0.0, - "WELL ACQUISITION START": "2026-02-25 04:42:28 PM", - "TOTAL GATED EVENTS": 0.0, - "WELL ACQUISITION END": "2026-02-25 04:42:30 PM", - "WELL TYPE": "U4", - "WELL STATUS": "Dry" - } - } - ], - "analytical method identifier": "TestProtocol [v1]", - "method version": "7", - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" - }, - "custom information document": { - "BatchStopTime": "2026-02-25 04:58:48 PM" - } - }, - "analyst": "nan" - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "multi analyte profiling analyzer", - "sample volume setting": { - "value": 50.0, - "unit": "μL" - }, - "dilution factor setting": { - "value": 66.0, - "unit": "(unitless)" - } - } - ] - }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_340", - "measurement time": "2026-02-25T16:42:08+00:00", - "sample document": { - "sample identifier": "Sample_005", - "location identifier": "E1", - "custom information document": { - "PanelName": "TestPanel [v1]", - "BeadType": "MagPlex" - } - }, "error aggregate document": { "error document": [ { @@ -15122,6 +3455,60 @@ } ] }, + "custom information document": { + "TOTAL CLASSIFIED EVENTS": 0.0, + "TOTAL ACTIVE EVENTS": 0.0, + "COUNT %CV": 0.0, + "WELL ACQUISITION START": "2026-02-25 04:42:28 PM", + "TOTAL GATED EVENTS": 0.0, + "WELL ACQUISITION END": "2026-02-25 04:42:30 PM", + "WELL TYPE": "U4", + "WELL STATUS": "Dry" + } + } + ], + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" + }, + "custom information document": { + "BatchStopTime": "2026-02-25 04:58:48 PM" + }, + "analytical method identifier": "TestProtocol [v1]", + "method version": "7" + }, + "analyst": "nan" + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 66.0, + "unit": "(unitless)" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_340", + "measurement time": "2026-02-25T16:42:08+00:00", + "sample document": { + "sample identifier": "Sample_005", + "location identifier": "E1", + "custom information document": { + "PanelName": "TestPanel [v1]", + "BeadType": "MagPlex" + } + }, "assay bead count": { "value": 0.0, "unit": "#" @@ -15581,85 +3968,31 @@ "statistics aggregate document": { "statistics document": [ { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": -0.0, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": -0.0, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - } - ] - } - } - ] - } - } - ] - }, - "custom information document": { - "TOTAL CLASSIFIED EVENTS": 0.0, - "TOTAL ACTIVE EVENTS": 0.0, - "COUNT %CV": 0.0, - "WELL ACQUISITION START": "2026-02-25 04:42:30 PM", - "TOTAL GATED EVENTS": 0.0, - "WELL ACQUISITION END": "2026-02-25 04:42:32 PM", - "WELL TYPE": "U5", - "WELL STATUS": "Dry" - } - } - ], - "analytical method identifier": "TestProtocol [v1]", - "method version": "7", - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" - }, - "custom information document": { - "BatchStopTime": "2026-02-25 04:58:48 PM" - } - }, - "analyst": "nan" - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "multi analyte profiling analyzer", - "sample volume setting": { - "value": 50.0, - "unit": "μL" - }, - "dilution factor setting": { - "value": 64.0, - "unit": "(unitless)" + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] } } ] }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_425", - "measurement time": "2026-02-25T16:42:08+00:00", - "sample document": { - "sample identifier": "Sample_006", - "location identifier": "F1", - "custom information document": { - "PanelName": "TestPanel [v1]", - "BeadType": "MagPlex" - } - }, "error aggregate document": { "error document": [ { @@ -16056,6 +4389,60 @@ } ] }, + "custom information document": { + "TOTAL CLASSIFIED EVENTS": 0.0, + "TOTAL ACTIVE EVENTS": 0.0, + "COUNT %CV": 0.0, + "WELL ACQUISITION START": "2026-02-25 04:42:30 PM", + "TOTAL GATED EVENTS": 0.0, + "WELL ACQUISITION END": "2026-02-25 04:42:32 PM", + "WELL TYPE": "U5", + "WELL STATUS": "Dry" + } + } + ], + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" + }, + "custom information document": { + "BatchStopTime": "2026-02-25 04:58:48 PM" + }, + "analytical method identifier": "TestProtocol [v1]", + "method version": "7" + }, + "analyst": "nan" + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 64.0, + "unit": "(unitless)" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_425", + "measurement time": "2026-02-25T16:42:08+00:00", + "sample document": { + "sample identifier": "Sample_006", + "location identifier": "F1", + "custom information document": { + "PanelName": "TestPanel [v1]", + "BeadType": "MagPlex" + } + }, "assay bead count": { "value": 0.0, "unit": "#" @@ -16540,60 +4927,6 @@ } ] }, - "custom information document": { - "TOTAL CLASSIFIED EVENTS": 0.0, - "TOTAL ACTIVE EVENTS": 0.0, - "COUNT %CV": 0.0, - "WELL ACQUISITION START": "2026-02-25 04:42:32 PM", - "TOTAL GATED EVENTS": 0.0, - "WELL ACQUISITION END": "2026-02-25 04:42:34 PM", - "WELL TYPE": "U6", - "WELL STATUS": "Dry" - } - } - ], - "analytical method identifier": "TestProtocol [v1]", - "method version": "7", - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" - }, - "custom information document": { - "BatchStopTime": "2026-02-25 04:58:48 PM" - } - }, - "analyst": "nan" - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "multi analyte profiling analyzer", - "sample volume setting": { - "value": 50.0, - "unit": "μL" - }, - "dilution factor setting": { - "value": 12.0, - "unit": "(unitless)" - } - } - ] - }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_510", - "measurement time": "2026-02-25T16:42:08+00:00", - "sample document": { - "sample identifier": "Sample_007", - "location identifier": "G1", - "custom information document": { - "PanelName": "TestPanel [v1]", - "BeadType": "MagPlex" - } - }, "error aggregate document": { "error document": [ { @@ -16990,6 +5323,60 @@ } ] }, + "custom information document": { + "TOTAL CLASSIFIED EVENTS": 0.0, + "TOTAL ACTIVE EVENTS": 0.0, + "COUNT %CV": 0.0, + "WELL ACQUISITION START": "2026-02-25 04:42:32 PM", + "TOTAL GATED EVENTS": 0.0, + "WELL ACQUISITION END": "2026-02-25 04:42:34 PM", + "WELL TYPE": "U6", + "WELL STATUS": "Dry" + } + } + ], + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" + }, + "custom information document": { + "BatchStopTime": "2026-02-25 04:58:48 PM" + }, + "analytical method identifier": "TestProtocol [v1]", + "method version": "7" + }, + "analyst": "nan" + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 12.0, + "unit": "(unitless)" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_510", + "measurement time": "2026-02-25T16:42:08+00:00", + "sample document": { + "sample identifier": "Sample_007", + "location identifier": "G1", + "custom information document": { + "PanelName": "TestPanel [v1]", + "BeadType": "MagPlex" + } + }, "assay bead count": { "value": 0.0, "unit": "#" @@ -17439,95 +5826,41 @@ } }, { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_589", - "analyte name": "HPV59", - "assay bead identifier": "77", - "assay bead count": { - "value": NaN, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": -0.0, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": -0.0, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - } - ] - } - } - ] - } - } - ] - }, - "custom information document": { - "TOTAL CLASSIFIED EVENTS": 0.0, - "TOTAL ACTIVE EVENTS": 0.0, - "COUNT %CV": 0.0, - "WELL ACQUISITION START": "2026-02-25 04:42:34 PM", - "TOTAL GATED EVENTS": 0.0, - "WELL ACQUISITION END": "2026-02-25 04:42:36 PM", - "WELL TYPE": "U7", - "WELL STATUS": "Dry" - } - } - ], - "analytical method identifier": "TestProtocol [v1]", - "method version": "7", - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" - }, - "custom information document": { - "BatchStopTime": "2026-02-25 04:58:48 PM" - } - }, - "analyst": "nan" - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "multi analyte profiling analyzer", - "sample volume setting": { - "value": 50.0, - "unit": "μL" + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_589", + "analyte name": "HPV59", + "assay bead identifier": "77", + "assay bead count": { + "value": NaN, + "unit": "#" }, - "dilution factor setting": { - "value": 97.0, - "unit": "(unitless)" + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] } } ] }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_595", - "measurement time": "2026-02-25T16:42:08+00:00", - "sample document": { - "sample identifier": "Sample_008", - "location identifier": "H1", - "custom information document": { - "PanelName": "TestPanel [v1]", - "BeadType": "MagPlex" - } - }, "error aggregate document": { "error document": [ { @@ -17919,21 +6252,245 @@ "error feature": "HPV59 " }, { - "error": "NaN", - "error feature": "HPV59 " - } - ] - }, - "assay bead count": { - "value": 0.0, - "unit": "#" - }, - "analyte aggregate document": { - "analyte document": [ - { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_596", - "analyte name": "HPV6", - "assay bead identifier": "25", + "error": "NaN", + "error feature": "HPV59 " + } + ] + }, + "custom information document": { + "TOTAL CLASSIFIED EVENTS": 0.0, + "TOTAL ACTIVE EVENTS": 0.0, + "COUNT %CV": 0.0, + "WELL ACQUISITION START": "2026-02-25 04:42:34 PM", + "TOTAL GATED EVENTS": 0.0, + "WELL ACQUISITION END": "2026-02-25 04:42:36 PM", + "WELL TYPE": "U7", + "WELL STATUS": "Dry" + } + } + ], + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" + }, + "custom information document": { + "BatchStopTime": "2026-02-25 04:58:48 PM" + }, + "analytical method identifier": "TestProtocol [v1]", + "method version": "7" + }, + "analyst": "nan" + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 97.0, + "unit": "(unitless)" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_595", + "measurement time": "2026-02-25T16:42:08+00:00", + "sample document": { + "sample identifier": "Sample_008", + "location identifier": "H1", + "custom information document": { + "PanelName": "TestPanel [v1]", + "BeadType": "MagPlex" + } + }, + "assay bead count": { + "value": 0.0, + "unit": "#" + }, + "analyte aggregate document": { + "analyte document": [ + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_596", + "analyte name": "HPV6", + "assay bead identifier": "25", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_602", + "analyte name": "HPV11", + "assay bead identifier": "27", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_608", + "analyte name": "HPV16", + "assay bead identifier": "29", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_614", + "analyte name": "HPV18", + "assay bead identifier": "42", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_620", + "analyte name": "HPV31", + "assay bead identifier": "44", + "assay bead count": { + "value": NaN, + "unit": "#" + }, + "statistics aggregate document": { + "statistics document": [ + { + "statistical feature": "fluorescence", + "statistic dimension aggregate document": { + "statistic dimension document": [ + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "median role" + } + }, + { + "statistical value": { + "value": -0.0, + "unit": "RFU", + "has statistic datum role": "arithmetic mean role" + } + } + ] + } + } + ] + } + }, + { + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_626", + "analyte name": "HPV33", + "assay bead identifier": "46", "assay bead count": { "value": NaN, "unit": "#" @@ -17965,9 +6522,9 @@ } }, { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_602", - "analyte name": "HPV11", - "assay bead identifier": "27", + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_632", + "analyte name": "HPV45", + "assay bead identifier": "48", "assay bead count": { "value": NaN, "unit": "#" @@ -17999,9 +6556,9 @@ } }, { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_608", - "analyte name": "HPV16", - "assay bead identifier": "29", + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_638", + "analyte name": "HPV52", + "assay bead identifier": "61", "assay bead count": { "value": NaN, "unit": "#" @@ -18033,9 +6590,9 @@ } }, { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_614", - "analyte name": "HPV18", - "assay bead identifier": "42", + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_644", + "analyte name": "HPV58", + "assay bead identifier": "63", "assay bead count": { "value": NaN, "unit": "#" @@ -18067,9 +6624,9 @@ } }, { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_620", - "analyte name": "HPV31", - "assay bead identifier": "44", + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_650", + "analyte name": "HPV35", + "assay bead identifier": "65", "assay bead count": { "value": NaN, "unit": "#" @@ -18101,9 +6658,9 @@ } }, { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_626", - "analyte name": "HPV33", - "assay bead identifier": "46", + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_656", + "analyte name": "HPV39", + "assay bead identifier": "67", "assay bead count": { "value": NaN, "unit": "#" @@ -18135,9 +6692,9 @@ } }, { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_632", - "analyte name": "HPV45", - "assay bead identifier": "48", + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_662", + "analyte name": "HPV51", + "assay bead identifier": "72", "assay bead count": { "value": NaN, "unit": "#" @@ -18169,9 +6726,9 @@ } }, { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_638", - "analyte name": "HPV52", - "assay bead identifier": "61", + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_668", + "analyte name": "HPV56", + "assay bead identifier": "74", "assay bead count": { "value": NaN, "unit": "#" @@ -18203,9 +6760,9 @@ } }, { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_644", - "analyte name": "HPV58", - "assay bead identifier": "63", + "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_674", + "analyte name": "HPV59", + "assay bead identifier": "77", "assay bead count": { "value": NaN, "unit": "#" @@ -18235,349 +6792,459 @@ } ] } + } + ] + }, + "error aggregate document": { + "error document": [ + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV33 <%CV of Replicates>" }, { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_650", - "analyte name": "HPV35", - "assay bead identifier": "65", - "assay bead count": { - "value": NaN, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": -0.0, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": -0.0, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - } - ] - } - } - ] - } + "error": "NaN", + "error feature": "HPV33 " }, { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_656", - "analyte name": "HPV39", - "assay bead identifier": "67", - "assay bead count": { - "value": NaN, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": -0.0, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": -0.0, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - } - ] - } - } - ] - } + "error": "NaN", + "error feature": "HPV33 " }, { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_662", - "analyte name": "HPV51", - "assay bead identifier": "72", - "assay bead count": { - "value": NaN, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": -0.0, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": -0.0, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - } - ] - } - } - ] - } + "error": "NaN", + "error feature": "HPV45 " }, { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_668", - "analyte name": "HPV56", - "assay bead identifier": "74", - "assay bead count": { - "value": NaN, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": -0.0, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": -0.0, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - } - ] - } - } - ] - } + "error": "NaN", + "error feature": "HPV45 " }, { - "analyte identifier": "LUMINEX_INTELLIFLEX_TEST_ID_674", - "analyte name": "HPV59", - "assay bead identifier": "77", - "assay bead count": { - "value": NaN, - "unit": "#" - }, - "statistics aggregate document": { - "statistics document": [ - { - "statistical feature": "fluorescence", - "statistic dimension aggregate document": { - "statistic dimension document": [ - { - "statistical value": { - "value": -0.0, - "unit": "RFU", - "has statistic datum role": "median role" - } - }, - { - "statistical value": { - "value": -0.0, - "unit": "RFU", - "has statistic datum role": "arithmetic mean role" - } - } - ] - } - } - ] - } - } - ] - }, - "custom information document": { - "TOTAL CLASSIFIED EVENTS": 0.0, - "TOTAL ACTIVE EVENTS": 0.0, - "COUNT %CV": 0.0, - "WELL ACQUISITION START": "2026-02-25 04:42:36 PM", - "TOTAL GATED EVENTS": 0.0, - "WELL ACQUISITION END": "2026-02-25 04:42:38 PM", - "WELL TYPE": "U8", - "WELL STATUS": "Dry" - } - } - ], - "analytical method identifier": "TestProtocol [v1]", - "method version": "7", - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" - }, - "custom information document": { - "BatchStopTime": "2026-02-25 04:58:48 PM" - } - }, - "analyst": "nan" - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ + "error": "NaN", + "error feature": "HPV45 " + }, { - "device type": "multi analyte profiling analyzer", - "sample volume setting": { - "value": 50.0, - "unit": "μL" - }, - "dilution factor setting": { - "value": 7.0, - "unit": "(unitless)" - } - } - ] - }, - "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_680", - "measurement time": "2026-02-25T16:42:08+00:00", - "sample document": { - "sample identifier": "Sample_009", - "location identifier": "A2", - "custom information document": { - "PanelName": "TestPanel [v1]", - "BeadType": "MagPlex" - } - }, - "error aggregate document": { - "error document": [ + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, { "error": "NaN", - "error feature": "HPV6 <%CV of Replicates>" + "error feature": "HPV52 <%CV of Replicates>" }, { "error": "NaN", - "error feature": "HPV6 " + "error feature": "HPV52 " }, { "error": "NaN", - "error feature": "HPV11 <%CV of Replicates>" + "error feature": "HPV52 " }, { "error": "NaN", - "error feature": "HPV11 " + "error feature": "HPV58 " }, { "error": "NaN", - "error feature": "HPV16 <%CV of Replicates>" + "error feature": "HPV58 " }, { "error": "NaN", - "error feature": "HPV16 " + "error feature": "HPV58 " }, { "error": "NaN", - "error feature": "HPV18 <%CV of Replicates>" + "error feature": "HPV58 " }, { "error": "NaN", - "error feature": "HPV18 " + "error feature": "HPV58 <%CV of Replicates>" }, { "error": "NaN", - "error feature": "HPV31 <%CV of Replicates>" + "error feature": "HPV58 " }, { "error": "NaN", - "error feature": "HPV31 " + "error feature": "HPV58 " }, { "error": "NaN", - "error feature": "HPV33 <%CV of Replicates>" + "error feature": "HPV35 " }, { "error": "NaN", - "error feature": "HPV33 " + "error feature": "HPV35 " }, { "error": "NaN", - "error feature": "HPV45 <%CV of Replicates>" + "error feature": "HPV35 " }, { "error": "NaN", - "error feature": "HPV45 " + "error feature": "HPV35 " }, { "error": "NaN", - "error feature": "HPV52 <%CV of Replicates>" + "error feature": "HPV35 <%CV of Replicates>" }, { "error": "NaN", - "error feature": "HPV52 " + "error feature": "HPV35 " }, { "error": "NaN", - "error feature": "HPV58 <%CV of Replicates>" + "error feature": "HPV35 " }, { "error": "NaN", - "error feature": "HPV58 " + "error feature": "HPV39 " }, { "error": "NaN", - "error feature": "HPV35 <%CV of Replicates>" + "error feature": "HPV39 " }, { "error": "NaN", - "error feature": "HPV35 " + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV39 " }, { "error": "NaN", "error feature": "HPV39 <%CV of Replicates>" }, + { + "error": "NaN", + "error feature": "HPV39 " + }, { "error": "NaN", "error feature": "HPV39 " }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, { "error": "NaN", "error feature": "HPV51 <%CV of Replicates>" }, + { + "error": "NaN", + "error feature": "HPV51 " + }, { "error": "NaN", "error feature": "HPV51 " }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, { "error": "NaN", "error feature": "HPV56 <%CV of Replicates>" }, + { + "error": "NaN", + "error feature": "HPV56 " + }, { "error": "NaN", "error feature": "HPV56 " }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, + { + "error": "NaN", + "error feature": "HPV59 " + }, { "error": "NaN", "error feature": "HPV59 <%CV of Replicates>" }, + { + "error": "NaN", + "error feature": "HPV59 " + }, { "error": "NaN", "error feature": "HPV59 " } ] }, + "custom information document": { + "TOTAL CLASSIFIED EVENTS": 0.0, + "TOTAL ACTIVE EVENTS": 0.0, + "COUNT %CV": 0.0, + "WELL ACQUISITION START": "2026-02-25 04:42:36 PM", + "TOTAL GATED EVENTS": 0.0, + "WELL ACQUISITION END": "2026-02-25 04:42:38 PM", + "WELL TYPE": "U8", + "WELL STATUS": "Dry" + } + } + ], + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" + }, + "custom information document": { + "BatchStopTime": "2026-02-25 04:58:48 PM" + }, + "analytical method identifier": "TestProtocol [v1]", + "method version": "7" + }, + "analyst": "nan" + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "multi analyte profiling analyzer", + "sample volume setting": { + "value": 50.0, + "unit": "μL" + }, + "dilution factor setting": { + "value": 7.0, + "unit": "(unitless)" + } + } + ] + }, + "measurement identifier": "LUMINEX_INTELLIFLEX_TEST_ID_680", + "measurement time": "2026-02-25T16:42:08+00:00", + "sample document": { + "sample identifier": "Sample_009", + "location identifier": "A2", + "custom information document": { + "PanelName": "TestPanel [v1]", + "BeadType": "MagPlex" + } + }, "assay bead count": { "value": 155.0, "unit": "#" @@ -19062,6 +7729,122 @@ } ] }, + "error aggregate document": { + "error document": [ + { + "error": "NaN", + "error feature": "HPV6 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV6 " + }, + { + "error": "NaN", + "error feature": "HPV11 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV11 " + }, + { + "error": "NaN", + "error feature": "HPV16 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV16 " + }, + { + "error": "NaN", + "error feature": "HPV18 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV18 " + }, + { + "error": "NaN", + "error feature": "HPV31 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV31 " + }, + { + "error": "NaN", + "error feature": "HPV33 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV33 " + }, + { + "error": "NaN", + "error feature": "HPV45 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV45 " + }, + { + "error": "NaN", + "error feature": "HPV52 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV52 " + }, + { + "error": "NaN", + "error feature": "HPV58 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV58 " + }, + { + "error": "NaN", + "error feature": "HPV35 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV35 " + }, + { + "error": "NaN", + "error feature": "HPV39 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV39 " + }, + { + "error": "NaN", + "error feature": "HPV51 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV51 " + }, + { + "error": "NaN", + "error feature": "HPV56 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV56 " + }, + { + "error": "NaN", + "error feature": "HPV59 <%CV of Replicates>" + }, + { + "error": "NaN", + "error feature": "HPV59 " + } + ] + }, "custom information document": { "TOTAL CLASSIFIED EVENTS": 13.0, "TOTAL ACTIVE EVENTS": 13.0, @@ -19074,8 +7857,6 @@ } } ], - "analytical method identifier": "TestProtocol [v1]", - "method version": "7", "container type": "well plate", "plate well count": { "value": 96.0, @@ -19083,7 +7864,9 @@ }, "custom information document": { "BatchStopTime": "2026-02-25 04:58:48 PM" - } + }, + "analytical method identifier": "TestProtocol [v1]", + "method version": "7" }, "analyst": "nan" }, @@ -20006,21 +8789,11238 @@ "WELL TYPE": "U10", "WELL STATUS": "Dry" } - } - ], - "analytical method identifier": "TestProtocol [v1]", - "method version": "7", - "container type": "well plate", - "plate well count": { - "value": 96.0, - "unit": "#" + } + ], + "container type": "well plate", + "plate well count": { + "value": 96.0, + "unit": "#" + }, + "custom information document": { + "BatchStopTime": "2026-02-25 04:58:48 PM" + }, + "analytical method identifier": "TestProtocol [v1]", + "method version": "7" + }, + "analyst": "nan" + } + ], + "calculated data aggregate document": { + "calculated data document": [ + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_2", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_3", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_4", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_5", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_6", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_1", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_8", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_9", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_10", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_11", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_12", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_7", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_14", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_15", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_16", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_17", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_18", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_13", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_20", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_21", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_22", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_23", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_24", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_19", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_26", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_27", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_28", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_29", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_30", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_25", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_32", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_33", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_34", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_35", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_36", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_31", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_38", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_39", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_40", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_41", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_42", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_37", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_44", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_45", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_46", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_47", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_48", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_43", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_50", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_51", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_52", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_53", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_54", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_49", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_56", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_57", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_58", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_59", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_60", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_55", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_62", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_63", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_64", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_65", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_66", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_61", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_68", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_67", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_69", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_67", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_70", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_67", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_71", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_67", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_72", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_67", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_74", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_73", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_75", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_73", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_76", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_73", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_77", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_73", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_78", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_73", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_80", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_79", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_81", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_79", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_82", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_79", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_83", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_79", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_84", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_79", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 10.27147, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_87", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 20.6913, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_88", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_89", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_90", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_91", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_86", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 13.00171, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_93", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.19515, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_94", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_95", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_96", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_97", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_92", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 18.74283, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_99", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 21.78422, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_100", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_101", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_102", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_103", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_98", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 30.31642, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_105", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 34.34549, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_106", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_107", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_108", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_109", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_104", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 10.06287, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_111", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 26.93472, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_112", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_113", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_114", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_115", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_110", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 16.20594, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_117", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 21.66985, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_118", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_119", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_120", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_121", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_116", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 14.45707, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_123", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 6.78953, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_124", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_125", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_126", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_127", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_122", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 8.079, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_129", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_128", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 18.94993, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_130", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_128", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_131", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_128", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_132", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_128", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_133", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_128", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 11.31737, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_135", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_134", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 15.7872, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_136", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_134", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_137", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_134", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_138", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_134", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_139", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_134", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 25.38637, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_141", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_140", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 66.56967, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_142", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_140", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_143", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_140", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_144", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_140", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_145", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_140", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 22.34306, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_147", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_146", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 14.11385, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_148", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_146", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_149", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_146", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_150", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_146", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_151", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_146", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 8.98452, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_153", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_152", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 16.75217, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_154", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_152", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_155", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_152", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_156", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_152", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_157", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_152", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 13.69025, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_159", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_158", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 8.28269, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_160", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_158", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_161", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_158", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_162", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_158", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_163", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_158", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 8.82517, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_165", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 7.22755, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_166", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_167", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_168", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_169", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_164", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_172", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_171", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_173", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_171", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_174", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_171", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_175", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_171", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_176", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_171", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_178", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_179", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_180", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_181", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_182", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_177", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_184", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_185", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_186", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_187", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_188", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_183", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_190", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_191", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_192", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_193", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_194", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_189", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_196", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_195", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_197", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_195", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_198", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_195", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_199", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_195", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_200", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_195", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_202", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_201", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_203", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_201", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_204", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_201", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_205", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_201", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_206", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_201", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_208", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_207", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_209", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_207", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_210", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_207", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_211", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_207", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_212", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_207", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_214", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_213", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_215", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_213", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_216", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_213", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_217", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_213", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_218", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_213", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_220", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_219", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_221", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_219", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_222", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_219", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_223", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_219", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_224", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_219", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_226", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_225", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_227", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_225", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_228", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_225", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_229", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_225", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_230", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_225", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_232", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_231", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_233", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_231", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_234", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_231", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_235", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_231", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_236", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_231", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_238", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_237", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_239", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_237", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_240", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_237", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_241", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_237", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_242", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_237", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_244", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_243", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_245", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_243", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_246", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_243", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_247", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_243", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_248", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_243", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_250", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_249", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_251", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_249", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_252", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_249", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_253", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_249", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_254", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_249", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_257", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_256", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_258", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_256", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_259", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_256", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_260", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_256", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_261", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_256", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_263", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_262", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_264", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_262", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_265", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_262", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_266", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_262", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_267", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_262", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_269", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_268", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_270", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_268", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_271", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_268", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_272", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_268", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_273", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_268", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_275", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_274", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_276", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_274", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_277", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_274", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_278", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_274", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_279", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_274", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_281", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_280", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_282", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_280", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_283", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_280", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_284", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_280", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_285", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_280", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_287", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_286", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_288", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_286", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_289", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_286", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_290", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_286", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_291", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_286", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_293", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_292", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_294", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_292", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_295", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_292", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_296", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_292", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_297", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_292", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_299", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_298", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_300", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_298", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_301", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_298", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_302", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_298", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_303", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_298", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_305", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_304", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_306", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_304", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_307", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_304", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_308", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_304", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_309", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_304", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_311", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_310", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_312", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_310", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_313", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_310", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_314", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_310", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_315", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_310", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_317", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_316", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_318", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_316", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_319", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_316", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_320", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_316", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_321", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_316", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_323", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_322", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_324", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_322", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_325", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_322", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_326", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_322", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_327", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_322", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_329", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_328", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_330", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_328", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_331", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_328", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_332", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_328", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_333", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_328", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_335", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_334", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_336", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_334", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_337", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_334", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_338", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_334", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_339", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_334", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_342", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_341", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_343", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_341", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_344", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_341", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_345", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_341", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_346", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_341", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_348", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_347", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_349", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_347", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_350", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_347", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_351", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_347", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_352", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_347", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_354", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_353", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_355", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_353", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_356", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_353", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_357", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_353", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_358", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_353", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_360", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_359", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_361", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_359", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_362", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_359", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_363", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_359", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_364", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_359", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_366", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_365", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_367", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_365", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_368", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_365", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_369", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_365", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_370", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_365", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_372", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_371", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_373", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_371", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_374", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_371", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_375", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_371", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_376", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_371", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_378", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_377", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_379", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_377", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_380", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_377", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_381", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_377", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_382", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_377", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_384", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_383", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_385", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_383", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_386", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_383", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_387", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_383", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_388", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_383", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_390", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_389", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_391", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_389", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_392", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_389", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_393", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_389", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_394", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_389", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_396", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_395", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_397", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_395", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_398", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_395", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_399", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_395", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_400", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_395", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_402", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_401", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_403", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_401", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_404", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_401", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_405", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_401", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_406", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_401", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_408", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_407", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_409", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_407", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_410", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_407", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_411", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_407", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_412", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_407", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_414", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_413", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_415", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_413", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_416", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_413", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_417", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_413", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_418", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_413", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_420", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_419", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_421", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_419", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_422", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_419", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_423", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_419", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_424", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_419", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_427", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_426", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_428", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_426", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_429", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_426", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_430", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_426", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_431", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_426", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_433", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_432", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_434", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_432", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_435", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_432", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_436", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_432", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_437", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_432", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_439", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_438", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_440", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_438", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_441", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_438", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_442", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_438", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_443", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_438", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_445", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_444", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_446", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_444", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_447", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_444", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_448", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_444", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_449", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_444", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_451", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_450", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_452", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_450", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_453", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_450", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_454", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_450", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_455", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_450", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_457", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_456", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_458", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_456", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_459", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_456", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_460", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_456", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_461", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_456", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_463", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_462", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_464", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_462", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_465", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_462", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_466", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_462", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_467", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_462", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_469", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_468", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_470", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_468", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_471", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_468", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_472", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_468", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_473", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_468", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_475", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_474", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_476", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_474", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_477", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_474", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_478", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_474", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_479", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_474", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_481", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_480", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_482", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_480", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_483", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_480", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_484", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_480", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_485", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_480", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_487", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_486", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_488", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_486", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_489", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_486", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_490", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_486", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_491", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_486", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_493", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_492", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_494", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_492", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_495", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_492", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_496", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_492", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_497", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_492", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_499", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_498", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_500", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_498", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_501", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_498", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_502", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_498", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_503", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_498", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_505", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_504", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_506", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_504", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_507", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_504", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_508", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_504", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_509", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_504", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_512", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_511", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_513", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_511", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_514", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_511", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_515", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_511", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_516", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_511", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_518", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_517", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_519", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_517", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_520", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_517", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_521", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_517", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_522", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_517", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_524", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_523", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_525", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_523", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_526", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_523", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_527", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_523", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_528", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_523", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_530", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_529", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_531", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_529", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_532", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_529", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_533", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_529", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_534", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_529", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_536", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_535", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_537", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_535", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_538", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_535", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_539", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_535", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_540", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_535", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_542", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_541", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_543", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_541", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_544", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_541", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_545", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_541", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_546", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_541", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_548", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_547", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_549", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_547", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_550", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_547", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_551", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_547", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_552", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_547", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_554", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_553", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_555", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_553", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_556", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_553", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_557", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_553", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_558", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_553", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_560", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_559", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_561", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_559", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_562", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_559", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_563", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_559", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_564", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_559", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_566", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_565", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_567", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_565", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_568", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_565", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_569", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_565", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_570", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_565", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_572", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_571", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_573", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_571", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_574", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_571", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_575", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_571", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_576", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_571", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_578", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_577", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_579", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_577", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_580", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_577", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_581", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_577", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_582", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_577", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_584", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_583", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_585", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_583", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_586", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_583", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_587", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_583", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_588", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_583", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_590", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_589", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_591", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_589", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_592", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_589", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_593", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_589", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_594", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_589", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_597", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_596", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_598", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_596", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_599", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_596", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_600", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_596", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_601", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_596", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_603", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_602", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_604", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_602", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_605", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_602", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_606", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_602", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_607", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_602", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_609", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_608", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_610", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_608", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_611", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_608", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_612", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_608", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_613", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_608", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_615", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_614", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_616", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_614", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_617", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_614", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_618", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_614", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_619", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_614", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_621", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_620", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_622", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_620", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_623", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_620", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_624", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_620", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_625", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_620", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_627", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_626", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_628", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_626", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_629", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_626", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_630", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_626", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_631", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_626", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_633", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_632", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_634", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_632", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_635", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_632", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_636", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_632", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_637", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_632", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_639", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_638", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_640", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_638", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_641", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_638", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_642", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_638", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_643", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_638", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_645", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_644", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_646", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_644", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_647", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_644", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_648", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_644", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_649", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_644", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_651", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_650", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_652", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_650", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_653", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_650", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_654", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_650", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_655", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_650", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_657", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_656", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_658", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_656", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_659", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_656", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_660", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_656", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_661", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_656", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_663", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_662", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_664", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_662", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_665", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_662", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_666", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_662", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_667", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_662", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_669", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_668", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_670", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_668", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_671", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_668", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_672", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_668", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_673", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_668", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_675", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_674", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_676", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_674", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_677", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_674", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_678", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_674", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_679", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_674", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 7.78473, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_682", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_681", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 14.88722, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_683", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_681", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_684", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_681", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_685", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_681", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_686", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_681", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 20.34682, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_688", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_687", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 27.93493, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_689", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_687", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_690", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_687", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_691", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_687", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_692", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_687", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 9.14801, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_694", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_693", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 13.75635, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_695", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_693", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_696", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_693", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_697", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_693", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_698", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_693", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 15.84007, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_700", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_699", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 33.93718, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_701", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_699", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_702", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_699", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_703", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_699", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_704", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_699", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_706", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_705", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_707", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_705", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_708", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_705", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_709", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_705", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_710", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_705", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 31.18945, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_712", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_711", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 33.45918, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_713", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_711", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_714", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_711", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_715", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_711", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_716", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_711", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_718", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_717", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_719", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_717", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_720", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_717", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_721", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_717", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_722", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_717", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_724", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_723", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_725", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_723", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_726", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_723", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_727", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_723", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_728", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_723", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 7.65294, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_730", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_729", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 18.50287, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_731", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_729", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_732", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_729", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_733", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_729", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_734", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_729", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 44.74632, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_736", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_735", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 15.91363, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_737", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_735", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_738", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_735", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_739", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_735", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_740", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_735", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_742", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_741", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_743", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_741", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_744", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_741", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_745", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_741", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_746", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_741", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 12.05467, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_748", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_747", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 8.23379, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_749", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_747", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_750", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_747", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_751", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_747", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_752", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_747", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_754", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_753", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_755", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_753", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_756", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_753", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_757", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_753", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_758", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_753", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": 18.12325, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_760", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_759", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": 14.73418, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_761", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_759", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_762", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_759", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": 0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_763", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_759", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_764", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_759", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_767", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_766", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_768", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_766", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_769", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_766", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_770", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_766", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_771", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_766", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_773", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_772", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_774", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_772", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_775", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_772", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_776", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_772", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_777", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_772", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_779", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_778", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_780", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_778", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_781", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_778", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_782", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_778", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_783", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_778", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_785", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_784", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_786", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_784", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_787", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_784", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_788", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_784", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_789", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_784", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_791", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_790", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_792", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_790", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_793", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_790", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_794", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_790", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_795", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_790", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_797", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_796", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_798", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_796", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_799", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_796", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_800", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_796", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_801", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_796", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_803", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_802", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_804", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_802", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_805", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_802", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_806", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_802", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_807", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_802", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_809", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_808", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_810", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_808", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_811", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_808", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_812", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_808", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_813", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_808", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_815", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_814", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_816", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_814", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_817", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_814", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_818", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_814", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_819", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_814", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_821", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_820", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_822", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_820", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_823", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_820", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_824", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_820", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_825", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_820", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_827", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_826", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_828", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_826", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_829", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_826", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_830", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_826", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_831", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_826", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_833", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_832", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" }, - "custom information document": { - "BatchStopTime": "2026-02-25 04:58:48 PM" + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_834", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_832", + "data source feature": "fluorescence" + } + ] } }, - "analyst": "nan" - } - ] + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_835", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_832", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_836", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_832", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_837", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_832", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_839", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_838", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_840", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_838", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_841", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_838", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_842", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_838", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_843", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_838", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_845", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_844", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Avg Net MFI", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_846", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_844", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "%CV of Replicates", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_847", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_844", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Background", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_848", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_844", + "data source feature": "fluorescence" + } + ] + } + }, + { + "calculated data name": "Net Normalized Median", + "calculated result": { + "value": -0.0, + "unit": "RFU" + }, + "calculated data identifier": "LUMINEX_INTELLIFLEX_TEST_ID_849", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "LUMINEX_INTELLIFLEX_TEST_ID_844", + "data source feature": "fluorescence" + } + ] + } + } + ] + }, + "data system document": { + "ASM file identifier": "luminex_intelliflex_v2_2.json", + "data system instance identifier": "", + "file name": "luminex_intelliflex_v2_2.csv", + "UNC path": "tests/parsers/luminex_intelliflex/testdata/luminex_intelliflex_v2_2.csv", + "ASM converter name": "allotropy_luminex_intelliflex", + "ASM converter version": "0.1.118", + "software name": "INTELLIFLEX", + "software version": "Luminex INTELLIFLEX Bundle - 2.1.1015/Luminex INTELLIFLEX Instrument Control - 4.8.4.0/Luminex INTELLIFLEX Services - 2.1.160.0/Luminex INTELLIFLEX Touchscreen - 2.1.151.0/Firmware Bootloader - 1.0.34/Firmware Executable Version - 2.0.40/Firmware Linux Kernel - 4.9.59/Firmware SD Image - 1.3.17/Shell - N/A" + }, + "device system document": { + "equipment serial number": "IFLXTEST001" + } } }