From 00a5c8d74035120f029565b6bbe65eb640bf847c Mon Sep 17 00:00:00 2001 From: Oscar Castro Date: Tue, 16 Sep 2025 17:09:09 -0500 Subject: [PATCH 1/5] Migrate ctl_immunospot to use SeriesData.get_unread --- src/allotropy/allotrope/converter.py | 11 ++++++++++ .../ctl_immunospot_structure.py | 1 + src/allotropy/parsers/utils/pandas.py | 6 +++++- .../testdata/ctl_immunospot_example1.json | 20 +++++++++++++++++- .../testdata/ctl_immunospot_example2.json | 20 +++++++++++++++++- .../testdata/ctl_immunospot_v7_0_38_8.json | 21 ++++++++++++++++++- .../testdata/ctl_immunospot_v7_0_38_8_QC.json | 9 +++++++- 7 files changed, 83 insertions(+), 5 deletions(-) diff --git a/src/allotropy/allotrope/converter.py b/src/allotropy/allotrope/converter.py index b4a4630018..f95bb2be6a 100644 --- a/src/allotropy/allotrope/converter.py +++ b/src/allotropy/allotrope/converter.py @@ -4,6 +4,8 @@ from collections.abc import Callable, Mapping, Sequence from dataclasses import asdict, field, fields, is_dataclass, make_dataclass, MISSING from enum import Enum +import keyword +import re from types import GenericAlias, UnionType from typing import ( Any, @@ -150,6 +152,9 @@ def add_custom_information_document( continue cleaned_dict[key] = value + # Filter out Python keywords - they can't be used as dataclass field names + cleaned_dict = {k: v for k, v in cleaned_dict.items() if not keyword.iskeyword(k)} + # If dict is empty after cleaning, do not attach. if not cleaned_dict: return model @@ -177,6 +182,12 @@ def _convert_dict_to_model_key(key: str) -> str: key = f"___{key}" for dict_val, model_val in DICT_KEY_TO_MODEL_KEY_REPLACEMENTS.items(): key = key.replace(dict_val, model_val) + + # Ensure the key is a valid Python identifier + if not key.isidentifier(): + # Remove leading/trailing quotes and other invalid characters + key = re.sub(r'^["\']+|["\']+$', "", key) + return key diff --git a/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_structure.py b/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_structure.py index 79a954df2d..6d59a07c39 100644 --- a/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_structure.py +++ b/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_structure.py @@ -128,4 +128,5 @@ def create_metadata(header: SeriesData) -> Metadata: re.match(r"^ImmunoSpot ([\d\.]+)$", header[str, "Software version"]), msg="Unable to parse software version", ).group(1), + custom_info=header.get_unread(), ) diff --git a/src/allotropy/parsers/utils/pandas.py b/src/allotropy/parsers/utils/pandas.py index 5b1e47f841..be250db410 100644 --- a/src/allotropy/parsers/utils/pandas.py +++ b/src/allotropy/parsers/utils/pandas.py @@ -279,7 +279,11 @@ def _key_matches(self, match_key: str, key: str) -> bool: # "++" can cause re.compile to fail. Since it is never a valid regex expression # it is safe to escape it to prevent the error. match_key = match_key.replace("++", r"\+\+") - return bool(re.fullmatch(match_key, key)) + try: + return bool(re.fullmatch(match_key, key)) + except re.error: + # If the regex pattern is invalid, treat it as a literal string match + return key == match_key def _get_matching_keys(self, key_or_keys: str | set[str]) -> set[str]: return { diff --git a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example1.json b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example1.json index a504d586eb..87d5f4fc7b 100644 --- a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example1.json +++ b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example1.json @@ -7696,7 +7696,25 @@ "software name": "ImmunoSpot", "software version": "7.0.30.5", "ASM converter name": "allotropy_ctl_immunospot", - "ASM converter version": "0.1.36" + "ASM converter version": "0.1.105" + }, + "custom information document": { + "Sensitivity": 160.0, + "(Auto Areas": "Estimated, Manual Areas: Normalized)", + "Authenticated user": "'NORTHAMERICA\\foo'", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Assay": 1.0, + "Objects": "Normal", + "Min. SpotSize": "0.0025 Sq.mm", + "Normalize Counts of Mask": "Off", + "Diffuseness": "Normal", + "Background Balance": 40.0, + "Counted": "Tue Oct 03 14:44:50 2023", + "Max. SpotSize": "12.6147 Sq.mm", + "Counting Mask Size(%)": 100.0, + "Spot Separation": 15.0, + "Counting window size": "1024x1024" } } } diff --git a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example2.json b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example2.json index 1ce91d7409..9c3431a455 100644 --- a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example2.json +++ b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example2.json @@ -7696,7 +7696,25 @@ "software name": "ImmunoSpot", "software version": "7.0.30.5", "ASM converter name": "allotropy_ctl_immunospot", - "ASM converter version": "0.1.36" + "ASM converter version": "0.1.105" + }, + "custom information document": { + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0, + "Counting Mask Size(%)": 100.0, + "Authenticated user": "'NORTHAMERICA\\foo'", + "Counted": "Tue Oct 03 15:12:21 2023", + "Min. SpotSize": "0.0025 Sq.mm", + "Assay": 1.0, + "Edge Effect Compensation": "Off", + "Diffuseness": "Normal", + "(Auto Areas": "Estimated, Manual Areas: Normalized)", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Objects": "Normal", + "Sensitivity": 160.0, + "Normalize Counts of Mask": "Off", + "Edge Compensation Level": 1.0 } } } diff --git a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8.json b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8.json index de093aa379..285c0358fd 100644 --- a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8.json +++ b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8.json @@ -14128,7 +14128,26 @@ "software name": "ImmunoSpot", "software version": "7.0.38.8", "ASM converter name": "allotropy_ctl_immunospot", - "ASM converter version": "0.1.76" + "ASM converter version": "0.1.105" + }, + "custom information document": { + "Edge Effect Compensation": "Off", + "Counting": "8 bit", + " (Auto Areas": "Estimated, Manual Areas: Normalized)\"", + "Diffuseness": "Large", + "Scanning": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Normalize Counts of Mask": "On", + "Authenticated user": "'USER'", + "Spot Separation": 3.0, + "Max. SpotSize": "0.0542 Sq.mm", + "Counted": "Thu Feb 15 16:39:42 2024", + "Counting Mask Size(%)": 85.0, + "Min. SpotSize": "0.0005 Sq.mm", + "Counting window size": "600x600", + "Objects": "Normal", + "Assay": "1\t\t\t\t\t\tEdge Compensation Level: 1.0" } } } diff --git a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8_QC.json b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8_QC.json index a76bb4a0ac..53e9bb6864 100644 --- a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8_QC.json +++ b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8_QC.json @@ -13360,7 +13360,14 @@ "software name": "ImmunoSpot", "software version": "7.0.38.8", "ASM converter name": "allotropy_ctl_immunospot", - "ASM converter version": "0.1.76" + "ASM converter version": "0.1.105" + }, + "custom information document": { + "Counting window size": "600x600", + "Scanning": "8 bit", + "Authenticated user": "'USERNAME'", + "Counting": "8 bit", + "Review Date": "Tue Mar 05 12:20:51 2024" } } } From 231ac5e7e186d53e39a9c6dbf143714347a26417 Mon Sep 17 00:00:00 2001 From: Oscar Castro Date: Wed, 17 Sep 2025 16:07:54 -0500 Subject: [PATCH 2/5] organize properties as required --- .../benchling/_2023/_09/plate_reader.py | 20 +- .../ctl_immunospot/ctl_immunospot_reader.py | 40 +- .../ctl_immunospot_structure.py | 22 +- .../testdata/ctl_immunospot_example1.json | 1963 +++++++++++++-- .../testdata/ctl_immunospot_example2.json | 1963 +++++++++++++-- .../testdata/ctl_immunospot_v7_0_38_8.json | 2161 +++++++++++++++-- .../testdata/ctl_immunospot_v7_0_38_8_QC.json | 679 +++++- 7 files changed, 6097 insertions(+), 751 deletions(-) diff --git a/src/allotropy/allotrope/schema_mappers/adm/plate_reader/benchling/_2023/_09/plate_reader.py b/src/allotropy/allotrope/schema_mappers/adm/plate_reader/benchling/_2023/_09/plate_reader.py index 879f7b0086..1cecc955a7 100644 --- a/src/allotropy/allotrope/schema_mappers/adm/plate_reader/benchling/_2023/_09/plate_reader.py +++ b/src/allotropy/allotrope/schema_mappers/adm/plate_reader/benchling/_2023/_09/plate_reader.py @@ -86,6 +86,7 @@ class ImageFeature: feature: str result: float | InvalidJsonFloat data_sources: list[DataSource] | None = None + custom_info: dict[str, Any] | None = None @dataclass(frozen=True) @@ -561,15 +562,18 @@ def _get_processed_data_aggregate_document( processed_data_identifier=data.identifier, image_feature_aggregate_document=ImageFeatureAggregateDocument( image_feature_document=[ - ImageFeatureDocumentItem( - image_feature_identifier=image_feature.identifier, - image_feature_name=image_feature.feature, - image_feature_result=TQuantityValueUnitless( - value=image_feature.result - ), - data_source_aggregate_document=self._get_data_source_aggregate_document( - image_feature.data_sources + add_custom_information_document( + ImageFeatureDocumentItem( + image_feature_identifier=image_feature.identifier, + image_feature_name=image_feature.feature, + image_feature_result=TQuantityValueUnitless( + value=image_feature.result + ), + data_source_aggregate_document=self._get_data_source_aggregate_document( + image_feature.data_sources + ), ), + image_feature.custom_info, ) for image_feature in data.features ] diff --git a/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_reader.py b/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_reader.py index 5e4a49046f..8bfdb6a8bd 100644 --- a/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_reader.py +++ b/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_reader.py @@ -202,8 +202,6 @@ def _read_plate_data_7_0_38(self, reader: CsvReader) -> list[pd.DataFrame]: return plates def _read_header(self, reader: CsvReader) -> SeriesData: - lines = [line.strip() for line in reader.pop_until_empty(EMPTY_STR_OR_CSV_LINE)] - def fix_line(line: str) -> str: # Add missing key for file path line. if line.endswith(".txt") or line.endswith(".xls"): @@ -213,13 +211,45 @@ def fix_line(line: str) -> str: line = f"Review Date: {date_str}" return line.strip() - lines = [fix_line(line) for raw_line in lines for line in raw_line.split(";")] + def split_multi_key_line(line: str) -> list[str]: + """Split lines that contain multiple key-value pairs into separate lines.""" + line = line.strip().strip('"').strip() # Clean up quotes and whitespace + + # Case 1: Parenthetical format: (Auto Areas: Estimated, Manual Areas: Normalized) + if line.startswith("(") and line.endswith(")") and "," in line: + return [pair.strip() for pair in line[1:-1].split(",")] + + # Case 2: Tab-separated format: Assay: 1\t\t\t\t\t\tEdge Compensation Level: 1.0 + if "\t" in line and line.count(":") > 1: + return [ + part.strip() + for part in line.split("\t") + if part.strip() and ":" in part + ] + + return [line] + + def process_lines(raw_lines: list[str]) -> list[str]: + """Process a list of raw lines and return split/fixed lines.""" + processed = [] + for raw_line in raw_lines: + for line in raw_line.split(";"): + fixed_line = fix_line(line) + processed.extend(split_multi_key_line(fixed_line)) + return processed + + # Process initial header lines + lines = [line.strip() for line in reader.pop_until_empty(EMPTY_STR_OR_CSV_LINE)] + all_lines = process_lines(lines) + + # Process additional header lines if they exist reader.drop_empty(EMPTY_STR_OR_CSV_LINE) if ":" in (reader.get() or ""): - lines.extend(list(reader.pop_until_empty(EMPTY_STR_OR_CSV_LINE))) + additional_lines = list(reader.pop_until_empty(EMPTY_STR_OR_CSV_LINE)) + all_lines.extend(process_lines(additional_lines)) df = read_csv( - StringIO("\n".join(lines)), + StringIO("\n".join(all_lines)), sep=r"^([^:]+):\s+", header=None, engine="python", diff --git a/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_structure.py b/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_structure.py index 6d59a07c39..8033f2a445 100644 --- a/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_structure.py +++ b/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_structure.py @@ -33,8 +33,14 @@ def _create_measurement( well_plate_identifier: str, plate_data: dict[str, pd.DataFrame], histograms: dict[str, tuple[list[float], list[float]]], + header_data: dict[str, float | str | None], ) -> Measurement: location_identifier = f"{well_row}{well_col}" + image_custom_info = { + "Min. SpotSize": header_data.pop("Min. SpotSize", None), + "Max. SpotSize": header_data.pop("Max. SpotSize", None), + "Spot Separation": header_data.pop("Spot Separation", None), + } return Measurement( type_=MeasurementType.OPTICAL_IMAGING, device_type=constants.DEVICE_TYPE, @@ -50,6 +56,7 @@ def _create_measurement( identifier=random_uuid_str(), feature=name, result=float(data[well_col][well_row]), + custom_info=image_custom_info, ) for name, data in plate_data.items() ], @@ -77,6 +84,7 @@ def _create_measurement( ] if histograms and location_identifier in histograms else None, + device_control_custom_info=header_data, ) @@ -94,16 +102,23 @@ def create_measurement_groups( round_to_nearest_well_count(first_plate.size), f"Unable to determine valid plate count from dataframe of size: {first_plate.size}", ) + measurement_time = header[str, ("Counted", "Review Date")] + analyst = header[str, "Authenticated user"] + custom_info = { + "Assay": header.get(str, "Assay"), + } + header_data = header.get_unread() return [ MeasurementGroup( plate_well_count=plate_well_count, - measurement_time=header[str, ("Counted", "Review Date")], - analyst=header[str, "Authenticated user"], + measurement_time=measurement_time, + analyst=analyst, measurements=[ _create_measurement( - row, col, well_plate_identifier, plate_data, histograms + row, col, well_plate_identifier, plate_data, histograms, header_data ) ], + custom_info=custom_info, ) for row in first_plate.index for col in first_plate.columns @@ -128,5 +143,4 @@ def create_metadata(header: SeriesData) -> Metadata: re.match(r"^ImmunoSpot ([\d\.]+)$", header[str, "Software version"]), msg="Unable to parse software version", ).group(1), - custom_info=header.get_unread(), ) diff --git a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example1.json b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example1.json index 87d5f4fc7b..63ad38794b 100644 --- a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example1.json +++ b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example1.json @@ -16,7 +16,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -37,6 +50,11 @@ "image feature result": { "value": 61.0, "unit": "(unitless)" + }, + "custom information document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 } }, { @@ -45,6 +63,11 @@ "image feature result": { "value": 0.0072, "unit": "(unitless)" + }, + "custom information document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 } }, { @@ -53,6 +76,11 @@ "image feature result": { "value": 1.46, "unit": "(unitless)" + }, + "custom information document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 } }, { @@ -61,6 +89,11 @@ "image feature result": { "value": 0.5, "unit": "(unitless)" + }, + "custom information document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 } }, { @@ -69,6 +102,11 @@ "image feature result": { "value": 0.7, "unit": "(unitless)" + }, + "custom information document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 } } ] @@ -78,7 +116,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -96,7 +137,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -158,7 +212,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -176,7 +233,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -238,7 +308,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -256,7 +329,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -318,7 +404,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -336,7 +425,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -398,7 +500,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -416,7 +521,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -478,7 +596,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -496,7 +617,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -558,7 +692,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -576,7 +713,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -638,7 +788,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -656,7 +809,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -718,7 +884,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -736,7 +905,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -798,7 +980,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -816,7 +1001,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -878,7 +1076,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -896,7 +1097,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -958,7 +1172,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -976,7 +1193,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -1038,7 +1268,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1056,7 +1289,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -1118,7 +1364,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1136,7 +1385,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -1198,7 +1460,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1216,7 +1481,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -1278,7 +1556,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1296,7 +1577,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -1358,7 +1652,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1376,7 +1673,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -1438,7 +1748,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1456,7 +1769,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -1518,7 +1844,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1536,7 +1865,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -1598,7 +1940,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1616,7 +1961,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -1678,7 +2036,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1696,7 +2057,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -1758,7 +2132,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1776,7 +2153,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -1838,7 +2228,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1856,7 +2249,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -1918,7 +2324,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1936,7 +2345,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -1998,7 +2420,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2016,7 +2441,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -2078,7 +2516,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2096,7 +2537,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -2158,7 +2612,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2176,7 +2633,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -2238,7 +2708,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2256,7 +2729,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -2318,7 +2804,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2336,7 +2825,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -2398,7 +2900,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2416,7 +2921,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -2478,7 +2996,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2496,7 +3017,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -2558,7 +3092,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2576,7 +3113,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -2638,7 +3188,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2656,7 +3209,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -2718,7 +3284,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2736,7 +3305,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -2798,7 +3380,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2816,7 +3401,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -2878,7 +3476,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2896,7 +3497,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -2958,7 +3572,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2976,7 +3593,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -3038,7 +3668,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3056,7 +3689,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -3118,7 +3764,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3136,7 +3785,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -3198,7 +3860,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3216,7 +3881,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -3278,7 +3956,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3296,7 +3977,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -3358,7 +4052,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3376,7 +4073,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -3438,7 +4148,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3456,7 +4169,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -3518,7 +4244,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3536,7 +4265,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -3598,7 +4340,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3616,7 +4361,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -3678,7 +4436,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3696,7 +4457,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -3758,7 +4532,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3776,7 +4553,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -3838,7 +4628,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3856,7 +4649,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -3918,7 +4724,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3936,7 +4745,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -3998,7 +4820,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4016,7 +4841,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -4078,7 +4916,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4096,7 +4937,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -4158,7 +5012,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4176,7 +5033,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -4238,7 +5108,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4256,7 +5129,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -4318,7 +5204,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4336,7 +5225,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -4398,7 +5300,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4416,7 +5321,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -4478,7 +5396,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4496,7 +5417,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -4558,7 +5492,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4576,7 +5513,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -4638,7 +5588,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4656,7 +5609,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -4718,7 +5684,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4736,7 +5705,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -4798,7 +5780,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4816,7 +5801,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -4878,7 +5876,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4896,7 +5897,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -4958,7 +5972,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4976,7 +5993,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -5038,7 +6068,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5056,7 +6089,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -5118,7 +6164,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5136,7 +6185,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -5198,7 +6260,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5216,7 +6281,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -5278,7 +6356,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5296,7 +6377,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -5358,7 +6452,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5376,7 +6473,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -5438,7 +6548,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5456,7 +6569,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -5518,7 +6644,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5536,7 +6665,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -5598,7 +6740,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5616,7 +6761,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -5678,7 +6836,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5696,7 +6857,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -5758,7 +6932,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5776,7 +6953,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -5838,7 +7028,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5856,7 +7049,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -5918,7 +7124,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5936,7 +7145,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -5998,7 +7220,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6016,7 +7241,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -6078,7 +7316,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6096,7 +7337,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -6158,7 +7412,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6176,7 +7433,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -6238,7 +7508,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6256,7 +7529,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -6318,7 +7604,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6336,7 +7625,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -6398,7 +7700,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6416,7 +7721,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -6478,7 +7796,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6496,7 +7817,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -6558,7 +7892,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6576,7 +7913,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -6638,7 +7988,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6656,7 +8009,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -6718,7 +8084,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6736,7 +8105,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -6798,7 +8180,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6816,7 +8201,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -6878,7 +8276,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6896,7 +8297,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -6958,7 +8372,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6976,7 +8393,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -7038,7 +8468,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7056,7 +8489,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -7118,7 +8564,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7136,7 +8585,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -7198,7 +8660,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7216,7 +8681,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -7278,7 +8756,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7296,7 +8777,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -7358,7 +8852,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7376,7 +8873,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -7438,7 +8948,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7456,7 +8969,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -7518,7 +9044,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7536,7 +9065,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -7598,7 +9140,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7616,7 +9161,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting window size": "1024x1024", + "Edge Compensation Level": 1.0, + "Background Balance": 40.0, + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Objects": "Normal", + "Manual Areas": "Normalized", + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off" + } } ] }, @@ -7678,7 +9236,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" } @@ -7697,24 +9258,6 @@ "software version": "7.0.30.5", "ASM converter name": "allotropy_ctl_immunospot", "ASM converter version": "0.1.105" - }, - "custom information document": { - "Sensitivity": 160.0, - "(Auto Areas": "Estimated, Manual Areas: Normalized)", - "Authenticated user": "'NORTHAMERICA\\foo'", - "Edge Effect Compensation": "Off", - "Edge Compensation Level": 1.0, - "Assay": 1.0, - "Objects": "Normal", - "Min. SpotSize": "0.0025 Sq.mm", - "Normalize Counts of Mask": "Off", - "Diffuseness": "Normal", - "Background Balance": 40.0, - "Counted": "Tue Oct 03 14:44:50 2023", - "Max. SpotSize": "12.6147 Sq.mm", - "Counting Mask Size(%)": 100.0, - "Spot Separation": 15.0, - "Counting window size": "1024x1024" } } } diff --git a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example2.json b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example2.json index 9c3431a455..c556d4ac05 100644 --- a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example2.json +++ b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example2.json @@ -16,7 +16,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -37,6 +50,11 @@ "image feature result": { "value": 93.0, "unit": "(unitless)" + }, + "custom information document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 } }, { @@ -45,6 +63,11 @@ "image feature result": { "value": 0.0125, "unit": "(unitless)" + }, + "custom information document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 } }, { @@ -53,6 +76,11 @@ "image feature result": { "value": 3.86, "unit": "(unitless)" + }, + "custom information document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 } }, { @@ -61,6 +89,11 @@ "image feature result": { "value": 1.33, "unit": "(unitless)" + }, + "custom information document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 } }, { @@ -69,6 +102,11 @@ "image feature result": { "value": 1.83, "unit": "(unitless)" + }, + "custom information document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 } } ] @@ -78,7 +116,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -96,7 +137,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -158,7 +212,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -176,7 +233,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -238,7 +308,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -256,7 +329,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -318,7 +404,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -336,7 +425,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -398,7 +500,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -416,7 +521,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -478,7 +596,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -496,7 +617,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -558,7 +692,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -576,7 +713,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -638,7 +788,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -656,7 +809,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -718,7 +884,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -736,7 +905,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -798,7 +980,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -816,7 +1001,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -878,7 +1076,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -896,7 +1097,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -958,7 +1172,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -976,7 +1193,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -1038,7 +1268,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1056,7 +1289,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -1118,7 +1364,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1136,7 +1385,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -1198,7 +1460,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1216,7 +1481,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -1278,7 +1556,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1296,7 +1577,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -1358,7 +1652,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1376,7 +1673,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -1438,7 +1748,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1456,7 +1769,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -1518,7 +1844,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1536,7 +1865,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -1598,7 +1940,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1616,7 +1961,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -1678,7 +2036,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1696,7 +2057,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -1758,7 +2132,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1776,7 +2153,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -1838,7 +2228,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1856,7 +2249,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -1918,7 +2324,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1936,7 +2345,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -1998,7 +2420,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2016,7 +2441,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -2078,7 +2516,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2096,7 +2537,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -2158,7 +2612,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2176,7 +2633,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -2238,7 +2708,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2256,7 +2729,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -2318,7 +2804,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2336,7 +2825,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -2398,7 +2900,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2416,7 +2921,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -2478,7 +2996,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2496,7 +3017,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -2558,7 +3092,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2576,7 +3113,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -2638,7 +3188,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2656,7 +3209,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -2718,7 +3284,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2736,7 +3305,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -2798,7 +3380,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2816,7 +3401,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -2878,7 +3476,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2896,7 +3497,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -2958,7 +3572,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2976,7 +3593,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -3038,7 +3668,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3056,7 +3689,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -3118,7 +3764,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3136,7 +3785,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -3198,7 +3860,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3216,7 +3881,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -3278,7 +3956,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3296,7 +3977,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -3358,7 +4052,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3376,7 +4073,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -3438,7 +4148,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3456,7 +4169,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -3518,7 +4244,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3536,7 +4265,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -3598,7 +4340,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3616,7 +4361,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -3678,7 +4436,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3696,7 +4457,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -3758,7 +4532,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3776,7 +4553,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -3838,7 +4628,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3856,7 +4649,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -3918,7 +4724,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3936,7 +4745,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -3998,7 +4820,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4016,7 +4841,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -4078,7 +4916,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4096,7 +4937,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -4158,7 +5012,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4176,7 +5033,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -4238,7 +5108,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4256,7 +5129,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -4318,7 +5204,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4336,7 +5225,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -4398,7 +5300,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4416,7 +5321,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -4478,7 +5396,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4496,7 +5417,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -4558,7 +5492,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4576,7 +5513,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -4638,7 +5588,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4656,7 +5609,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -4718,7 +5684,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4736,7 +5705,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -4798,7 +5780,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4816,7 +5801,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -4878,7 +5876,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4896,7 +5897,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -4958,7 +5972,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4976,7 +5993,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -5038,7 +6068,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5056,7 +6089,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -5118,7 +6164,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5136,7 +6185,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -5198,7 +6260,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5216,7 +6281,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -5278,7 +6356,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5296,7 +6377,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -5358,7 +6452,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5376,7 +6473,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -5438,7 +6548,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5456,7 +6569,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -5518,7 +6644,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5536,7 +6665,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -5598,7 +6740,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5616,7 +6761,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -5678,7 +6836,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5696,7 +6857,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -5758,7 +6932,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5776,7 +6953,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -5838,7 +7028,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5856,7 +7049,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -5918,7 +7124,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5936,7 +7145,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -5998,7 +7220,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6016,7 +7241,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -6078,7 +7316,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6096,7 +7337,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -6158,7 +7412,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6176,7 +7433,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -6238,7 +7508,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6256,7 +7529,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -6318,7 +7604,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6336,7 +7625,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -6398,7 +7700,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6416,7 +7721,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -6478,7 +7796,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6496,7 +7817,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -6558,7 +7892,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6576,7 +7913,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -6638,7 +7988,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6656,7 +8009,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -6718,7 +8084,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6736,7 +8105,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -6798,7 +8180,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6816,7 +8201,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -6878,7 +8276,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6896,7 +8297,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -6958,7 +8372,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6976,7 +8393,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -7038,7 +8468,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7056,7 +8489,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -7118,7 +8564,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7136,7 +8585,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -7198,7 +8660,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7216,7 +8681,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -7278,7 +8756,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7296,7 +8777,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -7358,7 +8852,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7376,7 +8873,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -7438,7 +8948,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7456,7 +8969,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -7518,7 +9044,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7536,7 +9065,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -7598,7 +9140,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7616,7 +9161,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Auto Areas": "Estimated", + "Counting Mask Size(%)": 100.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Objects": "Normal", + "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Manual Areas": "Normalized", + "Counting window size": "1024x1024" + } } ] }, @@ -7678,7 +9236,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" } @@ -7697,24 +9258,6 @@ "software version": "7.0.30.5", "ASM converter name": "allotropy_ctl_immunospot", "ASM converter version": "0.1.105" - }, - "custom information document": { - "Max. SpotSize": "12.6147 Sq.mm", - "Spot Separation": 3.0, - "Counting Mask Size(%)": 100.0, - "Authenticated user": "'NORTHAMERICA\\foo'", - "Counted": "Tue Oct 03 15:12:21 2023", - "Min. SpotSize": "0.0025 Sq.mm", - "Assay": 1.0, - "Edge Effect Compensation": "Off", - "Diffuseness": "Normal", - "(Auto Areas": "Estimated, Manual Areas: Normalized)", - "Counting window size": "1024x1024", - "Background Balance": 40.0, - "Objects": "Normal", - "Sensitivity": 160.0, - "Normalize Counts of Mask": "Off", - "Edge Compensation Level": 1.0 } } } diff --git a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8.json b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8.json index 285c0358fd..1986f91318 100644 --- a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8.json +++ b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8.json @@ -16,7 +16,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -37,6 +52,11 @@ "image feature result": { "value": 1.0, "unit": "(unitless)" + }, + "custom information document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 } }, { @@ -45,6 +65,11 @@ "image feature result": { "value": 0.0, "unit": "(unitless)" + }, + "custom information document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 } }, { @@ -53,6 +78,11 @@ "image feature result": { "value": 0.0, "unit": "(unitless)" + }, + "custom information document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 } }, { @@ -61,6 +91,11 @@ "image feature result": { "value": 0.0, "unit": "(unitless)" + }, + "custom information document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 } }, { @@ -69,6 +104,11 @@ "image feature result": { "value": 0.0, "unit": "(unitless)" + }, + "custom information document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 } }, { @@ -77,6 +117,11 @@ "image feature result": { "value": 0.0, "unit": "(unitless)" + }, + "custom information document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 } } ] @@ -145,7 +190,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -163,7 +211,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -292,7 +355,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -310,7 +376,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -439,7 +520,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -457,7 +541,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -586,7 +685,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -604,7 +706,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -733,7 +850,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -751,7 +871,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -880,7 +1015,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -898,7 +1036,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -1027,7 +1180,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -1045,7 +1201,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -1174,7 +1345,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -1192,7 +1366,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -1321,7 +1510,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -1339,7 +1531,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -1468,7 +1675,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -1486,7 +1696,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -1615,7 +1840,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -1633,7 +1861,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -1762,7 +2005,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -1780,7 +2026,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -1909,7 +2170,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -1927,7 +2191,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -2056,7 +2335,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -2074,7 +2356,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -2203,7 +2500,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -2221,7 +2521,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -2350,7 +2665,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -2368,7 +2686,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -2497,7 +2830,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -2515,7 +2851,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -2644,7 +2995,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -2662,7 +3016,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -2791,7 +3160,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -2809,7 +3181,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -2938,7 +3325,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -2956,7 +3346,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -3085,7 +3490,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -3103,7 +3511,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -3232,7 +3655,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -3250,7 +3676,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -3379,7 +3820,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -3397,7 +3841,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -3526,7 +3985,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -3544,7 +4006,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -3673,7 +4150,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -3691,7 +4171,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -3820,7 +4315,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -3838,7 +4336,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -3967,7 +4480,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -3985,7 +4501,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -4114,7 +4645,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -4132,7 +4666,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -4261,7 +4810,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -4279,7 +4831,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -4408,7 +4975,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -4426,7 +4996,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -4555,7 +5140,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -4573,7 +5161,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -4702,7 +5305,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -4720,7 +5326,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -4849,7 +5470,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -4867,7 +5491,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -4996,7 +5635,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -5014,7 +5656,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -5143,7 +5800,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -5161,7 +5821,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -5290,7 +5965,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -5308,7 +5986,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -5437,7 +6130,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -5455,7 +6151,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -5584,7 +6295,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -5602,7 +6316,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -5731,7 +6460,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -5749,7 +6481,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -5878,7 +6625,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -5896,7 +6646,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -6025,7 +6790,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -6043,7 +6811,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -6172,7 +6955,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -6190,7 +6976,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -6319,7 +7120,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -6337,7 +7141,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -6466,7 +7285,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -6484,7 +7306,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -6613,7 +7450,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -6631,7 +7471,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -6760,7 +7615,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -6778,7 +7636,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -6907,7 +7780,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -6925,7 +7801,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -7054,7 +7945,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -7072,7 +7966,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -7201,7 +8110,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -7219,7 +8131,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -7348,7 +8275,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -7366,7 +8296,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -7495,7 +8440,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -7513,7 +8461,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -7642,7 +8605,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -7660,7 +8626,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -7789,7 +8770,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -7807,7 +8791,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -7936,7 +8935,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -7954,7 +8956,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -8083,7 +9100,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -8101,7 +9121,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -8230,7 +9265,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -8248,7 +9286,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -8377,7 +9430,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -8395,7 +9451,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -8524,7 +9595,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -8542,7 +9616,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -8671,7 +9760,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -8689,7 +9781,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -8818,7 +9925,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -8836,7 +9946,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -8965,7 +10090,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -8983,7 +10111,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -9112,7 +10255,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -9130,7 +10276,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -9259,7 +10420,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -9277,7 +10441,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -9406,7 +10585,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -9424,7 +10606,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -9553,7 +10750,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -9571,7 +10771,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -9700,7 +10915,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -9718,7 +10936,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -9847,7 +11080,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -9865,7 +11101,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -9994,7 +11245,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -10012,7 +11266,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -10141,7 +11410,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -10159,7 +11431,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -10288,7 +11575,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -10306,7 +11596,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -10435,7 +11740,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -10453,7 +11761,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -10582,7 +11905,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -10600,7 +11926,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -10729,7 +12070,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -10747,7 +12091,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -10876,7 +12235,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -10894,7 +12256,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -11023,7 +12400,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -11041,7 +12421,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -11170,7 +12565,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -11188,7 +12586,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -11317,7 +12730,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -11335,7 +12751,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -11464,7 +12895,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -11482,7 +12916,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -11611,7 +13060,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -11629,7 +13081,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -11758,7 +13225,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -11776,7 +13246,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -11905,7 +13390,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -11923,7 +13411,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -12052,7 +13555,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -12070,7 +13576,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -12199,7 +13720,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -12217,7 +13741,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -12346,7 +13885,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -12364,7 +13906,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -12493,7 +14050,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -12511,7 +14071,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -12640,7 +14215,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -12658,7 +14236,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -12787,7 +14380,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -12805,7 +14401,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -12934,7 +14545,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -12952,7 +14566,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -13081,7 +14710,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -13099,7 +14731,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -13228,7 +14875,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -13246,7 +14896,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -13375,7 +15040,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -13393,7 +15061,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -13522,7 +15205,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -13540,7 +15226,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -13669,7 +15370,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -13687,7 +15391,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -13816,7 +15535,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -13834,7 +15556,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -13963,7 +15700,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -13981,7 +15721,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Diffuseness": "Large", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Background Balance": 40.0, + "Edge Effect Compensation": "Off", + "Scanning": "8 bit", + "Sensitivity": 190.0, + "Objects": "Normal", + "Normalize Counts of Mask": "On", + "Counting Mask Size(%)": 85.0, + "Auto Areas": "Estimated", + "Edge Compensation Level": 1.0, + "Counting": "8 bit" + } } ] }, @@ -14110,7 +15865,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" } @@ -14129,25 +15887,6 @@ "software version": "7.0.38.8", "ASM converter name": "allotropy_ctl_immunospot", "ASM converter version": "0.1.105" - }, - "custom information document": { - "Edge Effect Compensation": "Off", - "Counting": "8 bit", - " (Auto Areas": "Estimated, Manual Areas: Normalized)\"", - "Diffuseness": "Large", - "Scanning": "8 bit", - "Background Balance": 40.0, - "Sensitivity": 190.0, - "Normalize Counts of Mask": "On", - "Authenticated user": "'USER'", - "Spot Separation": 3.0, - "Max. SpotSize": "0.0542 Sq.mm", - "Counted": "Thu Feb 15 16:39:42 2024", - "Counting Mask Size(%)": 85.0, - "Min. SpotSize": "0.0005 Sq.mm", - "Counting window size": "600x600", - "Objects": "Normal", - "Assay": "1\t\t\t\t\t\tEdge Compensation Level: 1.0" } } } diff --git a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8_QC.json b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8_QC.json index 53e9bb6864..a2ad9b07b9 100644 --- a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8_QC.json +++ b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8_QC.json @@ -16,7 +16,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -155,7 +160,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -294,7 +304,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -433,7 +448,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -572,7 +592,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -711,7 +736,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -850,7 +880,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -989,7 +1024,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -1128,7 +1168,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -1267,7 +1312,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -1406,7 +1456,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -1545,7 +1600,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -1684,7 +1744,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -1823,7 +1888,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -1962,7 +2032,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -2101,7 +2176,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -2240,7 +2320,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -2379,7 +2464,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -2518,7 +2608,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -2657,7 +2752,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -2796,7 +2896,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -2935,7 +3040,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -3074,7 +3184,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -3213,7 +3328,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -3352,7 +3472,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -3491,7 +3616,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -3630,7 +3760,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -3769,7 +3904,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -3908,7 +4048,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -4047,7 +4192,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -4186,7 +4336,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -4325,7 +4480,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -4464,7 +4624,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -4603,7 +4768,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -4742,7 +4912,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -4881,7 +5056,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -5020,7 +5200,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -5159,7 +5344,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -5298,7 +5488,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -5437,7 +5632,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -5576,7 +5776,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -5715,7 +5920,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -5854,7 +6064,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -5993,7 +6208,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -6132,7 +6352,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -6271,7 +6496,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -6410,7 +6640,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -6549,7 +6784,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -6688,7 +6928,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -6827,7 +7072,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -6966,7 +7216,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -7105,7 +7360,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -7244,7 +7504,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -7383,7 +7648,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -7522,7 +7792,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -7661,7 +7936,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -7800,7 +8080,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -7939,7 +8224,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -8078,7 +8368,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -8217,7 +8512,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -8356,7 +8656,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -8495,7 +8800,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -8634,7 +8944,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -8773,7 +9088,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -8912,7 +9232,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -9051,7 +9376,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -9190,7 +9520,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -9329,7 +9664,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -9468,7 +9808,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -9607,7 +9952,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -9746,7 +10096,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -9885,7 +10240,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -10024,7 +10384,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -10163,7 +10528,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -10302,7 +10672,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -10441,7 +10816,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -10580,7 +10960,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -10719,7 +11104,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -10858,7 +11248,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -10997,7 +11392,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -11136,7 +11536,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -11275,7 +11680,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -11414,7 +11824,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -11553,7 +11968,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -11692,7 +12112,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -11831,7 +12256,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -11970,7 +12400,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -12109,7 +12544,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -12248,7 +12688,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -12387,7 +12832,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -12526,7 +12976,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -12665,7 +13120,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -12804,7 +13264,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -12943,7 +13408,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -13082,7 +13552,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -13221,7 +13696,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Counting window size": "600x600", + "Scanning": "8 bit" + } } ] }, @@ -13361,13 +13841,6 @@ "software version": "7.0.38.8", "ASM converter name": "allotropy_ctl_immunospot", "ASM converter version": "0.1.105" - }, - "custom information document": { - "Counting window size": "600x600", - "Scanning": "8 bit", - "Authenticated user": "'USERNAME'", - "Counting": "8 bit", - "Review Date": "Tue Mar 05 12:20:51 2024" } } } From de42c0a33d33505c4b84c739773c8ecc847f143d Mon Sep 17 00:00:00 2001 From: Oscar Castro Date: Thu, 18 Sep 2025 11:53:07 -0500 Subject: [PATCH 3/5] move spot data to processed data document --- .../benchling/_2023/_09/plate_reader.py | 20 +- .../ctl_immunospot_structure.py | 18 +- .../testdata/ctl_immunospot_example1.json | 1661 ++++++++----- .../testdata/ctl_immunospot_example2.json | 1657 ++++++++----- .../testdata/ctl_immunospot_v7_0_38_8.json | 2056 ++++++++++------- .../testdata/ctl_immunospot_v7_0_38_8_QC.json | 288 ++- 6 files changed, 3578 insertions(+), 2122 deletions(-) diff --git a/src/allotropy/allotrope/schema_mappers/adm/plate_reader/benchling/_2023/_09/plate_reader.py b/src/allotropy/allotrope/schema_mappers/adm/plate_reader/benchling/_2023/_09/plate_reader.py index 1cecc955a7..879f7b0086 100644 --- a/src/allotropy/allotrope/schema_mappers/adm/plate_reader/benchling/_2023/_09/plate_reader.py +++ b/src/allotropy/allotrope/schema_mappers/adm/plate_reader/benchling/_2023/_09/plate_reader.py @@ -86,7 +86,6 @@ class ImageFeature: feature: str result: float | InvalidJsonFloat data_sources: list[DataSource] | None = None - custom_info: dict[str, Any] | None = None @dataclass(frozen=True) @@ -562,18 +561,15 @@ def _get_processed_data_aggregate_document( processed_data_identifier=data.identifier, image_feature_aggregate_document=ImageFeatureAggregateDocument( image_feature_document=[ - add_custom_information_document( - ImageFeatureDocumentItem( - image_feature_identifier=image_feature.identifier, - image_feature_name=image_feature.feature, - image_feature_result=TQuantityValueUnitless( - value=image_feature.result - ), - data_source_aggregate_document=self._get_data_source_aggregate_document( - image_feature.data_sources - ), + ImageFeatureDocumentItem( + image_feature_identifier=image_feature.identifier, + image_feature_name=image_feature.feature, + image_feature_result=TQuantityValueUnitless( + value=image_feature.result + ), + data_source_aggregate_document=self._get_data_source_aggregate_document( + image_feature.data_sources ), - image_feature.custom_info, ) for image_feature in data.features ] diff --git a/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_structure.py b/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_structure.py index 8033f2a445..601b0c3b51 100644 --- a/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_structure.py +++ b/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_structure.py @@ -36,11 +36,6 @@ def _create_measurement( header_data: dict[str, float | str | None], ) -> Measurement: location_identifier = f"{well_row}{well_col}" - image_custom_info = { - "Min. SpotSize": header_data.pop("Min. SpotSize", None), - "Max. SpotSize": header_data.pop("Max. SpotSize", None), - "Spot Separation": header_data.pop("Spot Separation", None), - } return Measurement( type_=MeasurementType.OPTICAL_IMAGING, device_type=constants.DEVICE_TYPE, @@ -51,12 +46,16 @@ def _create_measurement( detection_type=constants.DETECTION_TYPE, processed_data=ProcessedData( identifier=random_uuid_str(), + data_processing_document={ + "Min. SpotSize": header_data.pop("Min. SpotSize", None), + "Max. SpotSize": header_data.pop("Max. SpotSize", None), + "Spot Separation": header_data.pop("Spot Separation", None), + }, features=[ ImageFeature( identifier=random_uuid_str(), feature=name, result=float(data[well_col][well_row]), - custom_info=image_custom_info, ) for name, data in plate_data.items() ], @@ -115,7 +114,12 @@ def create_measurement_groups( analyst=analyst, measurements=[ _create_measurement( - row, col, well_plate_identifier, plate_data, histograms, header_data + row, + col, + well_plate_identifier, + plate_data, + histograms, + header_data.copy(), ) ], custom_info=custom_info, diff --git a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example1.json b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example1.json index 63ad38794b..4ef428bedc 100644 --- a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example1.json +++ b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example1.json @@ -18,16 +18,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -41,6 +41,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_1", "image feature aggregate document": { "image feature document": [ @@ -50,11 +55,6 @@ "image feature result": { "value": 61.0, "unit": "(unitless)" - }, - "custom information document": { - "Min. SpotSize": "0.0025 Sq.mm", - "Max. SpotSize": "12.6147 Sq.mm", - "Spot Separation": 15.0 } }, { @@ -63,11 +63,6 @@ "image feature result": { "value": 0.0072, "unit": "(unitless)" - }, - "custom information document": { - "Min. SpotSize": "0.0025 Sq.mm", - "Max. SpotSize": "12.6147 Sq.mm", - "Spot Separation": 15.0 } }, { @@ -76,11 +71,6 @@ "image feature result": { "value": 1.46, "unit": "(unitless)" - }, - "custom information document": { - "Min. SpotSize": "0.0025 Sq.mm", - "Max. SpotSize": "12.6147 Sq.mm", - "Spot Separation": 15.0 } }, { @@ -89,11 +79,6 @@ "image feature result": { "value": 0.5, "unit": "(unitless)" - }, - "custom information document": { - "Min. SpotSize": "0.0025 Sq.mm", - "Max. SpotSize": "12.6147 Sq.mm", - "Spot Separation": 15.0 } }, { @@ -102,11 +87,6 @@ "image feature result": { "value": 0.7, "unit": "(unitless)" - }, - "custom information document": { - "Min. SpotSize": "0.0025 Sq.mm", - "Max. SpotSize": "12.6147 Sq.mm", - "Spot Separation": 15.0 } } ] @@ -139,16 +119,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -162,6 +142,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_8", "image feature aggregate document": { "image feature document": [ @@ -235,16 +220,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -258,6 +243,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_15", "image feature aggregate document": { "image feature document": [ @@ -331,16 +321,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -354,6 +344,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_22", "image feature aggregate document": { "image feature document": [ @@ -427,16 +422,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -450,6 +445,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_29", "image feature aggregate document": { "image feature document": [ @@ -523,16 +523,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -546,6 +546,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_36", "image feature aggregate document": { "image feature document": [ @@ -619,16 +624,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -642,6 +647,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_43", "image feature aggregate document": { "image feature document": [ @@ -715,16 +725,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -738,6 +748,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_50", "image feature aggregate document": { "image feature document": [ @@ -811,16 +826,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -834,6 +849,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_57", "image feature aggregate document": { "image feature document": [ @@ -907,16 +927,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -930,6 +950,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_64", "image feature aggregate document": { "image feature document": [ @@ -1003,16 +1028,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -1026,6 +1051,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_71", "image feature aggregate document": { "image feature document": [ @@ -1099,16 +1129,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -1122,6 +1152,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_78", "image feature aggregate document": { "image feature document": [ @@ -1195,16 +1230,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -1218,6 +1253,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_85", "image feature aggregate document": { "image feature document": [ @@ -1291,16 +1331,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -1314,6 +1354,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_92", "image feature aggregate document": { "image feature document": [ @@ -1387,16 +1432,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -1410,6 +1455,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_99", "image feature aggregate document": { "image feature document": [ @@ -1483,16 +1533,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -1506,6 +1556,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_106", "image feature aggregate document": { "image feature document": [ @@ -1579,16 +1634,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -1602,6 +1657,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_113", "image feature aggregate document": { "image feature document": [ @@ -1675,16 +1735,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -1698,6 +1758,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_120", "image feature aggregate document": { "image feature document": [ @@ -1771,16 +1836,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -1794,6 +1859,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_127", "image feature aggregate document": { "image feature document": [ @@ -1867,16 +1937,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -1890,6 +1960,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_134", "image feature aggregate document": { "image feature document": [ @@ -1963,16 +2038,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -1986,6 +2061,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_141", "image feature aggregate document": { "image feature document": [ @@ -2059,16 +2139,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -2082,6 +2162,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_148", "image feature aggregate document": { "image feature document": [ @@ -2155,16 +2240,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -2178,6 +2263,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_155", "image feature aggregate document": { "image feature document": [ @@ -2251,16 +2341,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -2274,6 +2364,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_162", "image feature aggregate document": { "image feature document": [ @@ -2347,16 +2442,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -2370,6 +2465,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_169", "image feature aggregate document": { "image feature document": [ @@ -2443,16 +2543,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -2466,6 +2566,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_176", "image feature aggregate document": { "image feature document": [ @@ -2539,16 +2644,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -2562,6 +2667,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_183", "image feature aggregate document": { "image feature document": [ @@ -2635,16 +2745,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -2658,6 +2768,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_190", "image feature aggregate document": { "image feature document": [ @@ -2731,16 +2846,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -2754,6 +2869,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_197", "image feature aggregate document": { "image feature document": [ @@ -2827,16 +2947,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -2850,6 +2970,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_204", "image feature aggregate document": { "image feature document": [ @@ -2923,16 +3048,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -2946,6 +3071,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_211", "image feature aggregate document": { "image feature document": [ @@ -3019,16 +3149,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -3042,6 +3172,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_218", "image feature aggregate document": { "image feature document": [ @@ -3115,16 +3250,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -3138,6 +3273,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_225", "image feature aggregate document": { "image feature document": [ @@ -3211,16 +3351,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -3234,6 +3374,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_232", "image feature aggregate document": { "image feature document": [ @@ -3307,16 +3452,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -3330,6 +3475,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_239", "image feature aggregate document": { "image feature document": [ @@ -3403,16 +3553,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -3426,6 +3576,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_246", "image feature aggregate document": { "image feature document": [ @@ -3499,16 +3654,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -3522,6 +3677,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_253", "image feature aggregate document": { "image feature document": [ @@ -3595,16 +3755,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -3618,6 +3778,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_260", "image feature aggregate document": { "image feature document": [ @@ -3691,16 +3856,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -3714,6 +3879,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_267", "image feature aggregate document": { "image feature document": [ @@ -3787,16 +3957,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -3810,6 +3980,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_274", "image feature aggregate document": { "image feature document": [ @@ -3883,16 +4058,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -3906,6 +4081,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_281", "image feature aggregate document": { "image feature document": [ @@ -3979,16 +4159,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -4002,6 +4182,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_288", "image feature aggregate document": { "image feature document": [ @@ -4075,16 +4260,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -4098,6 +4283,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_295", "image feature aggregate document": { "image feature document": [ @@ -4171,16 +4361,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -4194,6 +4384,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_302", "image feature aggregate document": { "image feature document": [ @@ -4267,16 +4462,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -4290,6 +4485,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_309", "image feature aggregate document": { "image feature document": [ @@ -4363,16 +4563,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -4386,6 +4586,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_316", "image feature aggregate document": { "image feature document": [ @@ -4459,16 +4664,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -4482,6 +4687,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_323", "image feature aggregate document": { "image feature document": [ @@ -4555,16 +4765,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -4578,6 +4788,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_330", "image feature aggregate document": { "image feature document": [ @@ -4651,16 +4866,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -4674,6 +4889,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_337", "image feature aggregate document": { "image feature document": [ @@ -4747,16 +4967,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -4770,6 +4990,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_344", "image feature aggregate document": { "image feature document": [ @@ -4843,16 +5068,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -4866,6 +5091,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_351", "image feature aggregate document": { "image feature document": [ @@ -4939,16 +5169,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -4962,6 +5192,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_358", "image feature aggregate document": { "image feature document": [ @@ -5035,16 +5270,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -5058,6 +5293,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_365", "image feature aggregate document": { "image feature document": [ @@ -5130,17 +5370,17 @@ { "device type": "imager", "detection type": "optical-imaging", - "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, - "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", + "custom information document": { + "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -5154,6 +5394,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_372", "image feature aggregate document": { "image feature document": [ @@ -5227,16 +5472,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -5250,6 +5495,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_379", "image feature aggregate document": { "image feature document": [ @@ -5323,16 +5573,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -5346,6 +5596,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_386", "image feature aggregate document": { "image feature document": [ @@ -5419,16 +5674,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -5442,6 +5697,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_393", "image feature aggregate document": { "image feature document": [ @@ -5515,16 +5775,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -5538,6 +5798,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_400", "image feature aggregate document": { "image feature document": [ @@ -5611,16 +5876,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -5634,6 +5899,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_407", "image feature aggregate document": { "image feature document": [ @@ -5707,16 +5977,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -5730,6 +6000,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_414", "image feature aggregate document": { "image feature document": [ @@ -5803,16 +6078,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -5826,6 +6101,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_421", "image feature aggregate document": { "image feature document": [ @@ -5899,16 +6179,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -5922,6 +6202,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_428", "image feature aggregate document": { "image feature document": [ @@ -5995,16 +6280,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -6018,6 +6303,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_435", "image feature aggregate document": { "image feature document": [ @@ -6091,16 +6381,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -6114,6 +6404,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_442", "image feature aggregate document": { "image feature document": [ @@ -6187,16 +6482,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -6210,6 +6505,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_449", "image feature aggregate document": { "image feature document": [ @@ -6283,16 +6583,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -6306,6 +6606,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_456", "image feature aggregate document": { "image feature document": [ @@ -6379,16 +6684,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -6402,6 +6707,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_463", "image feature aggregate document": { "image feature document": [ @@ -6475,16 +6785,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -6498,6 +6808,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_470", "image feature aggregate document": { "image feature document": [ @@ -6571,16 +6886,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -6594,6 +6909,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_477", "image feature aggregate document": { "image feature document": [ @@ -6667,16 +6987,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -6690,6 +7010,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_484", "image feature aggregate document": { "image feature document": [ @@ -6763,16 +7088,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -6786,6 +7111,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_491", "image feature aggregate document": { "image feature document": [ @@ -6859,16 +7189,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -6882,6 +7212,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_498", "image feature aggregate document": { "image feature document": [ @@ -6955,16 +7290,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -6978,6 +7313,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_505", "image feature aggregate document": { "image feature document": [ @@ -7051,16 +7391,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -7074,6 +7414,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_512", "image feature aggregate document": { "image feature document": [ @@ -7147,16 +7492,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -7170,6 +7515,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_519", "image feature aggregate document": { "image feature document": [ @@ -7243,16 +7593,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -7266,6 +7616,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_526", "image feature aggregate document": { "image feature document": [ @@ -7339,16 +7694,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -7362,6 +7717,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_533", "image feature aggregate document": { "image feature document": [ @@ -7435,16 +7795,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -7458,6 +7818,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_540", "image feature aggregate document": { "image feature document": [ @@ -7531,16 +7896,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -7554,6 +7919,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_547", "image feature aggregate document": { "image feature document": [ @@ -7627,16 +7997,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -7650,6 +8020,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_554", "image feature aggregate document": { "image feature document": [ @@ -7723,16 +8098,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -7746,6 +8121,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_561", "image feature aggregate document": { "image feature document": [ @@ -7819,16 +8199,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -7842,6 +8222,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_568", "image feature aggregate document": { "image feature document": [ @@ -7915,16 +8300,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -7938,6 +8323,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_575", "image feature aggregate document": { "image feature document": [ @@ -8011,16 +8401,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -8034,6 +8424,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_582", "image feature aggregate document": { "image feature document": [ @@ -8107,16 +8502,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -8130,6 +8525,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_589", "image feature aggregate document": { "image feature document": [ @@ -8203,16 +8603,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -8226,6 +8626,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_596", "image feature aggregate document": { "image feature document": [ @@ -8299,16 +8704,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -8322,6 +8727,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_603", "image feature aggregate document": { "image feature document": [ @@ -8395,16 +8805,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -8418,6 +8828,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_610", "image feature aggregate document": { "image feature document": [ @@ -8491,16 +8906,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -8514,6 +8929,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_617", "image feature aggregate document": { "image feature document": [ @@ -8587,16 +9007,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -8610,6 +9030,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_624", "image feature aggregate document": { "image feature document": [ @@ -8683,16 +9108,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -8706,6 +9131,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_631", "image feature aggregate document": { "image feature document": [ @@ -8779,16 +9209,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -8802,6 +9232,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_638", "image feature aggregate document": { "image feature document": [ @@ -8875,16 +9310,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -8898,6 +9333,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_645", "image feature aggregate document": { "image feature document": [ @@ -8971,16 +9411,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -8994,6 +9434,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_652", "image feature aggregate document": { "image feature document": [ @@ -9067,16 +9512,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -9090,6 +9535,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_659", "image feature aggregate document": { "image feature document": [ @@ -9163,16 +9613,16 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "1024x1024", - "Edge Compensation Level": 1.0, - "Background Balance": 40.0, "Counting Mask Size(%)": 100.0, - "Auto Areas": "Estimated", - "Objects": "Normal", - "Manual Areas": "Normalized", "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, + "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", + "Background Balance": 40.0, "Diffuseness": "Normal", + "Manual Areas": "Normalized", + "Counting window size": "1024x1024", + "Objects": "Normal", "Edge Effect Compensation": "Off" } } @@ -9186,6 +9636,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 15.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_666", "image feature aggregate document": { "image feature document": [ diff --git a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example2.json b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example2.json index c556d4ac05..11766f2975 100644 --- a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example2.json +++ b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example2.json @@ -18,17 +18,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -41,6 +41,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_1", "image feature aggregate document": { "image feature document": [ @@ -50,11 +55,6 @@ "image feature result": { "value": 93.0, "unit": "(unitless)" - }, - "custom information document": { - "Min. SpotSize": "0.0025 Sq.mm", - "Max. SpotSize": "12.6147 Sq.mm", - "Spot Separation": 3.0 } }, { @@ -63,11 +63,6 @@ "image feature result": { "value": 0.0125, "unit": "(unitless)" - }, - "custom information document": { - "Min. SpotSize": "0.0025 Sq.mm", - "Max. SpotSize": "12.6147 Sq.mm", - "Spot Separation": 3.0 } }, { @@ -76,11 +71,6 @@ "image feature result": { "value": 3.86, "unit": "(unitless)" - }, - "custom information document": { - "Min. SpotSize": "0.0025 Sq.mm", - "Max. SpotSize": "12.6147 Sq.mm", - "Spot Separation": 3.0 } }, { @@ -89,11 +79,6 @@ "image feature result": { "value": 1.33, "unit": "(unitless)" - }, - "custom information document": { - "Min. SpotSize": "0.0025 Sq.mm", - "Max. SpotSize": "12.6147 Sq.mm", - "Spot Separation": 3.0 } }, { @@ -102,11 +87,6 @@ "image feature result": { "value": 1.83, "unit": "(unitless)" - }, - "custom information document": { - "Min. SpotSize": "0.0025 Sq.mm", - "Max. SpotSize": "12.6147 Sq.mm", - "Spot Separation": 3.0 } } ] @@ -139,17 +119,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -162,6 +142,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_8", "image feature aggregate document": { "image feature document": [ @@ -235,17 +220,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -258,6 +243,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_15", "image feature aggregate document": { "image feature document": [ @@ -331,17 +321,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -354,6 +344,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_22", "image feature aggregate document": { "image feature document": [ @@ -427,17 +422,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -450,6 +445,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_29", "image feature aggregate document": { "image feature document": [ @@ -523,17 +523,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -546,6 +546,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_36", "image feature aggregate document": { "image feature document": [ @@ -619,17 +624,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -642,6 +647,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_43", "image feature aggregate document": { "image feature document": [ @@ -715,17 +725,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -738,6 +748,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_50", "image feature aggregate document": { "image feature document": [ @@ -811,17 +826,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -834,6 +849,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_57", "image feature aggregate document": { "image feature document": [ @@ -907,17 +927,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -930,6 +950,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_64", "image feature aggregate document": { "image feature document": [ @@ -1003,17 +1028,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -1026,6 +1051,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_71", "image feature aggregate document": { "image feature document": [ @@ -1099,17 +1129,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -1122,6 +1152,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_78", "image feature aggregate document": { "image feature document": [ @@ -1195,17 +1230,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -1218,6 +1253,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_85", "image feature aggregate document": { "image feature document": [ @@ -1291,17 +1331,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -1314,6 +1354,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_92", "image feature aggregate document": { "image feature document": [ @@ -1387,17 +1432,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -1410,6 +1455,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_99", "image feature aggregate document": { "image feature document": [ @@ -1483,17 +1533,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -1506,6 +1556,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_106", "image feature aggregate document": { "image feature document": [ @@ -1579,17 +1634,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -1602,6 +1657,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_113", "image feature aggregate document": { "image feature document": [ @@ -1675,17 +1735,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -1698,6 +1758,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_120", "image feature aggregate document": { "image feature document": [ @@ -1771,17 +1836,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -1794,6 +1859,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_127", "image feature aggregate document": { "image feature document": [ @@ -1867,17 +1937,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -1890,6 +1960,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_134", "image feature aggregate document": { "image feature document": [ @@ -1963,17 +2038,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -1986,6 +2061,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_141", "image feature aggregate document": { "image feature document": [ @@ -2059,17 +2139,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -2082,6 +2162,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_148", "image feature aggregate document": { "image feature document": [ @@ -2155,17 +2240,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -2178,6 +2263,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_155", "image feature aggregate document": { "image feature document": [ @@ -2251,17 +2341,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -2274,6 +2364,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_162", "image feature aggregate document": { "image feature document": [ @@ -2347,17 +2442,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -2370,6 +2465,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_169", "image feature aggregate document": { "image feature document": [ @@ -2443,17 +2543,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -2466,6 +2566,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_176", "image feature aggregate document": { "image feature document": [ @@ -2539,17 +2644,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -2562,6 +2667,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_183", "image feature aggregate document": { "image feature document": [ @@ -2635,17 +2745,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -2658,6 +2768,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_190", "image feature aggregate document": { "image feature document": [ @@ -2731,17 +2846,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -2754,6 +2869,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_197", "image feature aggregate document": { "image feature document": [ @@ -2827,17 +2947,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -2850,6 +2970,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_204", "image feature aggregate document": { "image feature document": [ @@ -2923,17 +3048,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -2946,6 +3071,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_211", "image feature aggregate document": { "image feature document": [ @@ -3019,17 +3149,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -3042,6 +3172,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_218", "image feature aggregate document": { "image feature document": [ @@ -3115,17 +3250,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -3138,6 +3273,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_225", "image feature aggregate document": { "image feature document": [ @@ -3211,17 +3351,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -3234,6 +3374,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_232", "image feature aggregate document": { "image feature document": [ @@ -3307,17 +3452,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -3330,6 +3475,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_239", "image feature aggregate document": { "image feature document": [ @@ -3403,17 +3553,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -3426,6 +3576,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_246", "image feature aggregate document": { "image feature document": [ @@ -3499,17 +3654,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -3522,6 +3677,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_253", "image feature aggregate document": { "image feature document": [ @@ -3595,17 +3755,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -3618,6 +3778,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_260", "image feature aggregate document": { "image feature document": [ @@ -3691,17 +3856,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -3714,6 +3879,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_267", "image feature aggregate document": { "image feature document": [ @@ -3787,17 +3957,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -3810,6 +3980,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_274", "image feature aggregate document": { "image feature document": [ @@ -3883,17 +4058,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -3906,6 +4081,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_281", "image feature aggregate document": { "image feature document": [ @@ -3979,17 +4159,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -4002,6 +4182,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_288", "image feature aggregate document": { "image feature document": [ @@ -4075,17 +4260,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -4098,6 +4283,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_295", "image feature aggregate document": { "image feature document": [ @@ -4171,17 +4361,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -4194,6 +4384,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_302", "image feature aggregate document": { "image feature document": [ @@ -4267,17 +4462,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -4290,6 +4485,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_309", "image feature aggregate document": { "image feature document": [ @@ -4363,17 +4563,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -4386,6 +4586,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_316", "image feature aggregate document": { "image feature document": [ @@ -4459,17 +4664,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -4482,6 +4687,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_323", "image feature aggregate document": { "image feature document": [ @@ -4555,17 +4765,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -4578,6 +4788,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_330", "image feature aggregate document": { "image feature document": [ @@ -4651,17 +4866,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -4674,6 +4889,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_337", "image feature aggregate document": { "image feature document": [ @@ -4747,17 +4967,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -4770,6 +4990,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_344", "image feature aggregate document": { "image feature document": [ @@ -4843,17 +5068,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -4866,6 +5091,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_351", "image feature aggregate document": { "image feature document": [ @@ -4939,17 +5169,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -4962,6 +5192,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_358", "image feature aggregate document": { "image feature document": [ @@ -5035,17 +5270,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -5058,6 +5293,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_365", "image feature aggregate document": { "image feature document": [ @@ -5131,17 +5371,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -5154,6 +5394,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_372", "image feature aggregate document": { "image feature document": [ @@ -5227,17 +5472,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -5250,6 +5495,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_379", "image feature aggregate document": { "image feature document": [ @@ -5323,17 +5573,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -5346,6 +5596,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_386", "image feature aggregate document": { "image feature document": [ @@ -5419,17 +5674,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -5442,6 +5697,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_393", "image feature aggregate document": { "image feature document": [ @@ -5515,17 +5775,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -5538,6 +5798,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_400", "image feature aggregate document": { "image feature document": [ @@ -5611,17 +5876,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -5634,6 +5899,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_407", "image feature aggregate document": { "image feature document": [ @@ -5707,17 +5977,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -5730,6 +6000,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_414", "image feature aggregate document": { "image feature document": [ @@ -5803,17 +6078,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -5826,6 +6101,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_421", "image feature aggregate document": { "image feature document": [ @@ -5899,17 +6179,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -5922,6 +6202,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_428", "image feature aggregate document": { "image feature document": [ @@ -5995,17 +6280,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -6018,6 +6303,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_435", "image feature aggregate document": { "image feature document": [ @@ -6091,17 +6381,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -6114,6 +6404,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_442", "image feature aggregate document": { "image feature document": [ @@ -6187,17 +6482,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -6210,6 +6505,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_449", "image feature aggregate document": { "image feature document": [ @@ -6283,17 +6583,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -6306,6 +6606,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_456", "image feature aggregate document": { "image feature document": [ @@ -6379,17 +6684,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -6402,6 +6707,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_463", "image feature aggregate document": { "image feature document": [ @@ -6475,17 +6785,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -6498,6 +6808,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_470", "image feature aggregate document": { "image feature document": [ @@ -6571,17 +6886,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -6594,6 +6909,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_477", "image feature aggregate document": { "image feature document": [ @@ -6667,17 +6987,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -6690,6 +7010,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_484", "image feature aggregate document": { "image feature document": [ @@ -6763,17 +7088,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -6786,6 +7111,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_491", "image feature aggregate document": { "image feature document": [ @@ -6859,17 +7189,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -6882,6 +7212,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_498", "image feature aggregate document": { "image feature document": [ @@ -6955,17 +7290,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -6978,6 +7313,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_505", "image feature aggregate document": { "image feature document": [ @@ -7051,17 +7391,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -7074,6 +7414,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_512", "image feature aggregate document": { "image feature document": [ @@ -7147,17 +7492,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -7170,6 +7515,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_519", "image feature aggregate document": { "image feature document": [ @@ -7243,17 +7593,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -7266,6 +7616,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_526", "image feature aggregate document": { "image feature document": [ @@ -7339,17 +7694,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -7362,6 +7717,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_533", "image feature aggregate document": { "image feature document": [ @@ -7435,17 +7795,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -7458,6 +7818,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_540", "image feature aggregate document": { "image feature document": [ @@ -7531,17 +7896,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -7554,6 +7919,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_547", "image feature aggregate document": { "image feature document": [ @@ -7627,17 +7997,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -7650,6 +8020,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_554", "image feature aggregate document": { "image feature document": [ @@ -7723,17 +8098,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -7746,6 +8121,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_561", "image feature aggregate document": { "image feature document": [ @@ -7819,17 +8199,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -7842,6 +8222,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_568", "image feature aggregate document": { "image feature document": [ @@ -7915,17 +8300,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -7938,6 +8323,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_575", "image feature aggregate document": { "image feature document": [ @@ -8011,17 +8401,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -8034,6 +8424,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_582", "image feature aggregate document": { "image feature document": [ @@ -8107,17 +8502,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -8130,6 +8525,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_589", "image feature aggregate document": { "image feature document": [ @@ -8203,17 +8603,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -8226,6 +8626,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_596", "image feature aggregate document": { "image feature document": [ @@ -8299,17 +8704,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -8322,6 +8727,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_603", "image feature aggregate document": { "image feature document": [ @@ -8395,17 +8805,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -8418,6 +8828,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_610", "image feature aggregate document": { "image feature document": [ @@ -8491,17 +8906,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -8514,6 +8929,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_617", "image feature aggregate document": { "image feature document": [ @@ -8587,17 +9007,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -8610,6 +9030,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_624", "image feature aggregate document": { "image feature document": [ @@ -8683,17 +9108,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -8706,6 +9131,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_631", "image feature aggregate document": { "image feature document": [ @@ -8779,17 +9209,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -8802,6 +9232,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_638", "image feature aggregate document": { "image feature document": [ @@ -8875,17 +9310,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -8898,6 +9333,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_645", "image feature aggregate document": { "image feature document": [ @@ -8971,17 +9411,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -8994,6 +9434,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_652", "image feature aggregate document": { "image feature document": [ @@ -9067,17 +9512,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -9090,6 +9535,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_659", "image feature aggregate document": { "image feature document": [ @@ -9163,17 +9613,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Normalize Counts of Mask": "Off", - "Auto Areas": "Estimated", - "Counting Mask Size(%)": 100.0, "Diffuseness": "Normal", - "Edge Effect Compensation": "Off", - "Objects": "Normal", "Background Balance": 40.0, + "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, + "Auto Areas": "Estimated", "Sensitivity": 160.0, + "Counting window size": "1024x1024", + "Objects": "Normal", "Manual Areas": "Normalized", - "Counting window size": "1024x1024" + "Counting Mask Size(%)": 100.0, + "Edge Effect Compensation": "Off" } } ] @@ -9186,6 +9636,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0025 Sq.mm", + "Max. SpotSize": "12.6147 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_666", "image feature aggregate document": { "image feature document": [ diff --git a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8.json b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8.json index 1986f91318..bbdcebd600 100644 --- a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8.json +++ b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8.json @@ -18,19 +18,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -43,6 +43,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_1", "image feature aggregate document": { "image feature document": [ @@ -52,11 +57,6 @@ "image feature result": { "value": 1.0, "unit": "(unitless)" - }, - "custom information document": { - "Min. SpotSize": "0.0005 Sq.mm", - "Max. SpotSize": "0.0542 Sq.mm", - "Spot Separation": 3.0 } }, { @@ -65,11 +65,6 @@ "image feature result": { "value": 0.0, "unit": "(unitless)" - }, - "custom information document": { - "Min. SpotSize": "0.0005 Sq.mm", - "Max. SpotSize": "0.0542 Sq.mm", - "Spot Separation": 3.0 } }, { @@ -78,11 +73,6 @@ "image feature result": { "value": 0.0, "unit": "(unitless)" - }, - "custom information document": { - "Min. SpotSize": "0.0005 Sq.mm", - "Max. SpotSize": "0.0542 Sq.mm", - "Spot Separation": 3.0 } }, { @@ -91,11 +81,6 @@ "image feature result": { "value": 0.0, "unit": "(unitless)" - }, - "custom information document": { - "Min. SpotSize": "0.0005 Sq.mm", - "Max. SpotSize": "0.0542 Sq.mm", - "Spot Separation": 3.0 } }, { @@ -104,11 +89,6 @@ "image feature result": { "value": 0.0, "unit": "(unitless)" - }, - "custom information document": { - "Min. SpotSize": "0.0005 Sq.mm", - "Max. SpotSize": "0.0542 Sq.mm", - "Spot Separation": 3.0 } }, { @@ -117,11 +97,6 @@ "image feature result": { "value": 0.0, "unit": "(unitless)" - }, - "custom information document": { - "Min. SpotSize": "0.0005 Sq.mm", - "Max. SpotSize": "0.0542 Sq.mm", - "Spot Separation": 3.0 } } ] @@ -213,19 +188,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -238,6 +213,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_9", "image feature aggregate document": { "image feature document": [ @@ -378,19 +358,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -403,6 +383,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_17", "image feature aggregate document": { "image feature document": [ @@ -543,19 +528,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -568,6 +553,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_25", "image feature aggregate document": { "image feature document": [ @@ -708,19 +698,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -733,6 +723,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_33", "image feature aggregate document": { "image feature document": [ @@ -873,19 +868,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -898,6 +893,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_41", "image feature aggregate document": { "image feature document": [ @@ -1038,19 +1038,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -1063,6 +1063,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_49", "image feature aggregate document": { "image feature document": [ @@ -1203,19 +1208,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -1228,6 +1233,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_57", "image feature aggregate document": { "image feature document": [ @@ -1368,19 +1378,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -1393,6 +1403,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_65", "image feature aggregate document": { "image feature document": [ @@ -1533,19 +1548,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -1558,6 +1573,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_73", "image feature aggregate document": { "image feature document": [ @@ -1698,19 +1718,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -1723,6 +1743,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_81", "image feature aggregate document": { "image feature document": [ @@ -1863,19 +1888,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -1888,6 +1913,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_89", "image feature aggregate document": { "image feature document": [ @@ -2028,19 +2058,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -2053,6 +2083,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_97", "image feature aggregate document": { "image feature document": [ @@ -2193,19 +2228,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -2218,6 +2253,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_105", "image feature aggregate document": { "image feature document": [ @@ -2358,19 +2398,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -2383,6 +2423,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_113", "image feature aggregate document": { "image feature document": [ @@ -2523,19 +2568,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -2548,6 +2593,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_121", "image feature aggregate document": { "image feature document": [ @@ -2688,19 +2738,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -2713,6 +2763,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_129", "image feature aggregate document": { "image feature document": [ @@ -2853,19 +2908,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -2878,6 +2933,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_137", "image feature aggregate document": { "image feature document": [ @@ -3018,19 +3078,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -3043,6 +3103,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_145", "image feature aggregate document": { "image feature document": [ @@ -3183,19 +3248,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -3208,6 +3273,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_153", "image feature aggregate document": { "image feature document": [ @@ -3348,19 +3418,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -3373,6 +3443,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_161", "image feature aggregate document": { "image feature document": [ @@ -3513,19 +3588,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -3538,6 +3613,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_169", "image feature aggregate document": { "image feature document": [ @@ -3678,19 +3758,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -3703,6 +3783,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_177", "image feature aggregate document": { "image feature document": [ @@ -3843,19 +3928,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -3868,6 +3953,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_185", "image feature aggregate document": { "image feature document": [ @@ -4008,19 +4098,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -4033,6 +4123,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_193", "image feature aggregate document": { "image feature document": [ @@ -4173,19 +4268,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -4198,6 +4293,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_201", "image feature aggregate document": { "image feature document": [ @@ -4338,19 +4438,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -4363,6 +4463,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_209", "image feature aggregate document": { "image feature document": [ @@ -4503,19 +4608,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -4528,6 +4633,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_217", "image feature aggregate document": { "image feature document": [ @@ -4668,19 +4778,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -4693,6 +4803,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_225", "image feature aggregate document": { "image feature document": [ @@ -4833,19 +4948,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -4858,6 +4973,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_233", "image feature aggregate document": { "image feature document": [ @@ -4998,19 +5118,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -5023,6 +5143,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_241", "image feature aggregate document": { "image feature document": [ @@ -5163,19 +5288,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -5188,6 +5313,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_249", "image feature aggregate document": { "image feature document": [ @@ -5328,19 +5458,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -5353,6 +5483,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_257", "image feature aggregate document": { "image feature document": [ @@ -5493,19 +5628,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -5518,6 +5653,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_265", "image feature aggregate document": { "image feature document": [ @@ -5658,19 +5798,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -5683,6 +5823,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_273", "image feature aggregate document": { "image feature document": [ @@ -5823,19 +5968,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -5848,6 +5993,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_281", "image feature aggregate document": { "image feature document": [ @@ -5988,19 +6138,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -6013,6 +6163,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_289", "image feature aggregate document": { "image feature document": [ @@ -6149,23 +6304,23 @@ "measurement identifier": "CTL_IMMUNOSPOT_TEST_ID_296", "device control aggregate document": { "device control document": [ - { - "device type": "imager", - "detection type": "optical-imaging", - "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", + { + "device type": "imager", + "detection type": "optical-imaging", + "custom information document": { "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -6178,6 +6333,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_297", "image feature aggregate document": { "image feature document": [ @@ -6318,19 +6478,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -6343,6 +6503,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_305", "image feature aggregate document": { "image feature document": [ @@ -6483,19 +6648,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -6508,6 +6673,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_313", "image feature aggregate document": { "image feature document": [ @@ -6648,19 +6818,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -6673,6 +6843,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_321", "image feature aggregate document": { "image feature document": [ @@ -6813,19 +6988,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -6838,6 +7013,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_329", "image feature aggregate document": { "image feature document": [ @@ -6978,19 +7158,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -7003,6 +7183,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_337", "image feature aggregate document": { "image feature document": [ @@ -7143,19 +7328,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -7168,6 +7353,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_345", "image feature aggregate document": { "image feature document": [ @@ -7308,19 +7498,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -7333,6 +7523,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_353", "image feature aggregate document": { "image feature document": [ @@ -7473,19 +7668,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -7498,6 +7693,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_361", "image feature aggregate document": { "image feature document": [ @@ -7638,19 +7838,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -7663,6 +7863,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_369", "image feature aggregate document": { "image feature document": [ @@ -7803,19 +8008,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -7828,6 +8033,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_377", "image feature aggregate document": { "image feature document": [ @@ -7968,19 +8178,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -7993,6 +8203,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_385", "image feature aggregate document": { "image feature document": [ @@ -8133,19 +8348,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -8158,6 +8373,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_393", "image feature aggregate document": { "image feature document": [ @@ -8298,19 +8518,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -8323,6 +8543,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_401", "image feature aggregate document": { "image feature document": [ @@ -8463,19 +8688,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -8488,6 +8713,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_409", "image feature aggregate document": { "image feature document": [ @@ -8628,19 +8858,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -8653,6 +8883,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_417", "image feature aggregate document": { "image feature document": [ @@ -8793,19 +9028,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -8818,6 +9053,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_425", "image feature aggregate document": { "image feature document": [ @@ -8958,19 +9198,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -8983,6 +9223,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_433", "image feature aggregate document": { "image feature document": [ @@ -9123,19 +9368,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -9148,6 +9393,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_441", "image feature aggregate document": { "image feature document": [ @@ -9288,19 +9538,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -9313,6 +9563,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_449", "image feature aggregate document": { "image feature document": [ @@ -9453,19 +9708,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -9478,6 +9733,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_457", "image feature aggregate document": { "image feature document": [ @@ -9618,19 +9878,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -9643,6 +9903,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_465", "image feature aggregate document": { "image feature document": [ @@ -9783,19 +10048,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -9808,6 +10073,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_473", "image feature aggregate document": { "image feature document": [ @@ -9948,19 +10218,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -9973,6 +10243,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_481", "image feature aggregate document": { "image feature document": [ @@ -10113,19 +10388,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -10138,6 +10413,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_489", "image feature aggregate document": { "image feature document": [ @@ -10278,19 +10558,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -10303,6 +10583,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_497", "image feature aggregate document": { "image feature document": [ @@ -10443,19 +10728,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -10468,6 +10753,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_505", "image feature aggregate document": { "image feature document": [ @@ -10608,19 +10898,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -10633,6 +10923,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_513", "image feature aggregate document": { "image feature document": [ @@ -10773,19 +11068,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -10798,6 +11093,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_521", "image feature aggregate document": { "image feature document": [ @@ -10938,19 +11238,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -10963,6 +11263,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_529", "image feature aggregate document": { "image feature document": [ @@ -11103,19 +11408,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -11128,6 +11433,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_537", "image feature aggregate document": { "image feature document": [ @@ -11268,19 +11578,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -11293,6 +11603,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_545", "image feature aggregate document": { "image feature document": [ @@ -11433,19 +11748,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -11458,6 +11773,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_553", "image feature aggregate document": { "image feature document": [ @@ -11598,19 +11918,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -11623,6 +11943,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_561", "image feature aggregate document": { "image feature document": [ @@ -11763,19 +12088,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -11788,6 +12113,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_569", "image feature aggregate document": { "image feature document": [ @@ -11928,19 +12258,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -11953,6 +12283,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_577", "image feature aggregate document": { "image feature document": [ @@ -12093,19 +12428,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -12118,6 +12453,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_585", "image feature aggregate document": { "image feature document": [ @@ -12258,19 +12598,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -12283,6 +12623,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_593", "image feature aggregate document": { "image feature document": [ @@ -12423,19 +12768,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -12448,6 +12793,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_601", "image feature aggregate document": { "image feature document": [ @@ -12587,20 +12937,20 @@ { "device type": "imager", "detection type": "optical-imaging", - "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", + "custom information document": { "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -12613,6 +12963,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_609", "image feature aggregate document": { "image feature document": [ @@ -12753,19 +13108,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -12778,6 +13133,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_617", "image feature aggregate document": { "image feature document": [ @@ -12918,19 +13278,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -12943,6 +13303,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_625", "image feature aggregate document": { "image feature document": [ @@ -13083,19 +13448,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -13108,6 +13473,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_633", "image feature aggregate document": { "image feature document": [ @@ -13248,19 +13618,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -13273,6 +13643,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_641", "image feature aggregate document": { "image feature document": [ @@ -13413,19 +13788,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -13438,6 +13813,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_649", "image feature aggregate document": { "image feature document": [ @@ -13578,19 +13958,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -13603,6 +13983,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_657", "image feature aggregate document": { "image feature document": [ @@ -13743,19 +14128,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -13768,6 +14153,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_665", "image feature aggregate document": { "image feature document": [ @@ -13908,19 +14298,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -13933,6 +14323,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_673", "image feature aggregate document": { "image feature document": [ @@ -14073,19 +14468,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -14098,6 +14493,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_681", "image feature aggregate document": { "image feature document": [ @@ -14238,19 +14638,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -14263,6 +14663,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_689", "image feature aggregate document": { "image feature document": [ @@ -14403,19 +14808,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -14428,6 +14833,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_697", "image feature aggregate document": { "image feature document": [ @@ -14568,19 +14978,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -14593,6 +15003,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_705", "image feature aggregate document": { "image feature document": [ @@ -14733,19 +15148,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -14758,6 +15173,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_713", "image feature aggregate document": { "image feature document": [ @@ -14898,19 +15318,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -14923,6 +15343,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_721", "image feature aggregate document": { "image feature document": [ @@ -15063,19 +15488,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -15088,6 +15513,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_729", "image feature aggregate document": { "image feature document": [ @@ -15228,19 +15658,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -15253,6 +15683,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_737", "image feature aggregate document": { "image feature document": [ @@ -15393,19 +15828,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -15418,6 +15853,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_745", "image feature aggregate document": { "image feature document": [ @@ -15558,19 +15998,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -15583,6 +16023,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_753", "image feature aggregate document": { "image feature document": [ @@ -15723,19 +16168,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Diffuseness": "Large", - "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Background Balance": 40.0, - "Edge Effect Compensation": "Off", "Scanning": "8 bit", "Sensitivity": 190.0, + "Edge Effect Compensation": "Off", + "Manual Areas": "Normalized", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Counting": "8 bit", "Objects": "Normal", + "Background Balance": 40.0, "Normalize Counts of Mask": "On", "Counting Mask Size(%)": 85.0, - "Auto Areas": "Estimated", - "Edge Compensation Level": 1.0, - "Counting": "8 bit" + "Diffuseness": "Large", + "Auto Areas": "Estimated" } } ] @@ -15748,6 +16193,11 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": { + "Min. SpotSize": "0.0005 Sq.mm", + "Max. SpotSize": "0.0542 Sq.mm", + "Spot Separation": 3.0 + }, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_761", "image feature aggregate document": { "image feature document": [ diff --git a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8_QC.json b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8_QC.json index a2ad9b07b9..597a96de26 100644 --- a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8_QC.json +++ b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8_QC.json @@ -18,8 +18,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -33,6 +33,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_1", "image feature aggregate document": { "image feature document": [ @@ -162,8 +163,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -177,6 +178,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_8", "image feature aggregate document": { "image feature document": [ @@ -306,8 +308,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -321,6 +323,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_15", "image feature aggregate document": { "image feature document": [ @@ -450,8 +453,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -465,6 +468,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_22", "image feature aggregate document": { "image feature document": [ @@ -594,8 +598,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -609,6 +613,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_29", "image feature aggregate document": { "image feature document": [ @@ -738,8 +743,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -753,6 +758,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_36", "image feature aggregate document": { "image feature document": [ @@ -882,8 +888,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -897,6 +903,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_43", "image feature aggregate document": { "image feature document": [ @@ -1026,8 +1033,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -1041,6 +1048,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_50", "image feature aggregate document": { "image feature document": [ @@ -1170,8 +1178,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -1185,6 +1193,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_57", "image feature aggregate document": { "image feature document": [ @@ -1314,8 +1323,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -1329,6 +1338,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_64", "image feature aggregate document": { "image feature document": [ @@ -1458,8 +1468,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -1473,6 +1483,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_71", "image feature aggregate document": { "image feature document": [ @@ -1602,8 +1613,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -1617,6 +1628,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_78", "image feature aggregate document": { "image feature document": [ @@ -1746,8 +1758,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -1761,6 +1773,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_85", "image feature aggregate document": { "image feature document": [ @@ -1890,8 +1903,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -1905,6 +1918,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_92", "image feature aggregate document": { "image feature document": [ @@ -2034,8 +2048,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -2049,6 +2063,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_99", "image feature aggregate document": { "image feature document": [ @@ -2178,8 +2193,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -2193,6 +2208,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_106", "image feature aggregate document": { "image feature document": [ @@ -2322,8 +2338,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -2337,6 +2353,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_113", "image feature aggregate document": { "image feature document": [ @@ -2466,8 +2483,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -2481,6 +2498,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_120", "image feature aggregate document": { "image feature document": [ @@ -2610,8 +2628,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -2625,6 +2643,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_127", "image feature aggregate document": { "image feature document": [ @@ -2754,8 +2773,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -2769,6 +2788,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_134", "image feature aggregate document": { "image feature document": [ @@ -2898,8 +2918,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -2913,6 +2933,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_141", "image feature aggregate document": { "image feature document": [ @@ -3042,8 +3063,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -3057,6 +3078,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_148", "image feature aggregate document": { "image feature document": [ @@ -3186,8 +3208,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -3201,6 +3223,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_155", "image feature aggregate document": { "image feature document": [ @@ -3330,8 +3353,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -3345,6 +3368,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_162", "image feature aggregate document": { "image feature document": [ @@ -3474,8 +3498,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -3489,6 +3513,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_169", "image feature aggregate document": { "image feature document": [ @@ -3618,8 +3643,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -3633,6 +3658,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_176", "image feature aggregate document": { "image feature document": [ @@ -3762,8 +3788,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -3777,6 +3803,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_183", "image feature aggregate document": { "image feature document": [ @@ -3906,8 +3933,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -3921,6 +3948,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_190", "image feature aggregate document": { "image feature document": [ @@ -4050,8 +4078,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -4065,6 +4093,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_197", "image feature aggregate document": { "image feature document": [ @@ -4194,8 +4223,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -4209,6 +4238,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_204", "image feature aggregate document": { "image feature document": [ @@ -4338,8 +4368,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -4353,6 +4383,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_211", "image feature aggregate document": { "image feature document": [ @@ -4482,8 +4513,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -4497,6 +4528,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_218", "image feature aggregate document": { "image feature document": [ @@ -4626,8 +4658,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -4641,6 +4673,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_225", "image feature aggregate document": { "image feature document": [ @@ -4770,8 +4803,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -4785,6 +4818,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_232", "image feature aggregate document": { "image feature document": [ @@ -4914,8 +4948,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -4929,6 +4963,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_239", "image feature aggregate document": { "image feature document": [ @@ -5058,8 +5093,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -5073,6 +5108,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_246", "image feature aggregate document": { "image feature document": [ @@ -5202,8 +5238,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -5217,6 +5253,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_253", "image feature aggregate document": { "image feature document": [ @@ -5346,8 +5383,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -5361,6 +5398,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_260", "image feature aggregate document": { "image feature document": [ @@ -5490,8 +5528,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -5505,6 +5543,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_267", "image feature aggregate document": { "image feature document": [ @@ -5634,8 +5673,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -5649,6 +5688,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_274", "image feature aggregate document": { "image feature document": [ @@ -5778,8 +5818,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -5793,6 +5833,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_281", "image feature aggregate document": { "image feature document": [ @@ -5922,8 +5963,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -5937,6 +5978,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_288", "image feature aggregate document": { "image feature document": [ @@ -6066,8 +6108,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -6081,6 +6123,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_295", "image feature aggregate document": { "image feature document": [ @@ -6210,8 +6253,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -6225,6 +6268,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_302", "image feature aggregate document": { "image feature document": [ @@ -6354,8 +6398,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -6369,6 +6413,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_309", "image feature aggregate document": { "image feature document": [ @@ -6498,8 +6543,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -6513,6 +6558,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_316", "image feature aggregate document": { "image feature document": [ @@ -6642,8 +6688,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -6657,6 +6703,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_323", "image feature aggregate document": { "image feature document": [ @@ -6786,8 +6833,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -6801,6 +6848,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_330", "image feature aggregate document": { "image feature document": [ @@ -6930,8 +6978,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -6945,6 +6993,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_337", "image feature aggregate document": { "image feature document": [ @@ -7074,8 +7123,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -7089,6 +7138,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_344", "image feature aggregate document": { "image feature document": [ @@ -7218,8 +7268,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -7233,6 +7283,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_351", "image feature aggregate document": { "image feature document": [ @@ -7362,8 +7413,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -7377,6 +7428,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_358", "image feature aggregate document": { "image feature document": [ @@ -7506,8 +7558,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -7521,6 +7573,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_365", "image feature aggregate document": { "image feature document": [ @@ -7650,8 +7703,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -7665,6 +7718,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_372", "image feature aggregate document": { "image feature document": [ @@ -7794,8 +7848,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -7809,6 +7863,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_379", "image feature aggregate document": { "image feature document": [ @@ -7938,8 +7993,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -7953,6 +8008,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_386", "image feature aggregate document": { "image feature document": [ @@ -8082,8 +8138,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -8097,6 +8153,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_393", "image feature aggregate document": { "image feature document": [ @@ -8226,8 +8283,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -8241,6 +8298,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_400", "image feature aggregate document": { "image feature document": [ @@ -8370,8 +8428,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -8385,6 +8443,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_407", "image feature aggregate document": { "image feature document": [ @@ -8514,8 +8573,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -8529,6 +8588,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_414", "image feature aggregate document": { "image feature document": [ @@ -8658,8 +8718,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -8673,6 +8733,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_421", "image feature aggregate document": { "image feature document": [ @@ -8802,8 +8863,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -8817,6 +8878,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_428", "image feature aggregate document": { "image feature document": [ @@ -8946,8 +9008,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -8961,6 +9023,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_435", "image feature aggregate document": { "image feature document": [ @@ -9090,8 +9153,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -9105,6 +9168,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_442", "image feature aggregate document": { "image feature document": [ @@ -9234,8 +9298,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -9249,6 +9313,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_449", "image feature aggregate document": { "image feature document": [ @@ -9378,8 +9443,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -9393,6 +9458,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_456", "image feature aggregate document": { "image feature document": [ @@ -9522,8 +9588,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -9537,6 +9603,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_463", "image feature aggregate document": { "image feature document": [ @@ -9666,8 +9733,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -9681,6 +9748,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_470", "image feature aggregate document": { "image feature document": [ @@ -9810,8 +9878,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -9825,6 +9893,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_477", "image feature aggregate document": { "image feature document": [ @@ -9954,8 +10023,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -9969,6 +10038,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_484", "image feature aggregate document": { "image feature document": [ @@ -10098,8 +10168,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -10113,6 +10183,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_491", "image feature aggregate document": { "image feature document": [ @@ -10242,8 +10313,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -10257,6 +10328,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_498", "image feature aggregate document": { "image feature document": [ @@ -10386,8 +10458,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -10401,6 +10473,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_505", "image feature aggregate document": { "image feature document": [ @@ -10530,8 +10603,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -10545,6 +10618,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_512", "image feature aggregate document": { "image feature document": [ @@ -10674,8 +10748,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -10689,6 +10763,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_519", "image feature aggregate document": { "image feature document": [ @@ -10818,8 +10893,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -10833,6 +10908,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_526", "image feature aggregate document": { "image feature document": [ @@ -10962,8 +11038,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -10977,6 +11053,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_533", "image feature aggregate document": { "image feature document": [ @@ -11106,8 +11183,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -11121,6 +11198,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_540", "image feature aggregate document": { "image feature document": [ @@ -11250,8 +11328,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -11265,6 +11343,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_547", "image feature aggregate document": { "image feature document": [ @@ -11394,8 +11473,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -11409,6 +11488,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_554", "image feature aggregate document": { "image feature document": [ @@ -11538,8 +11618,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -11553,6 +11633,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_561", "image feature aggregate document": { "image feature document": [ @@ -11682,8 +11763,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -11697,6 +11778,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_568", "image feature aggregate document": { "image feature document": [ @@ -11826,8 +11908,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -11841,6 +11923,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_575", "image feature aggregate document": { "image feature document": [ @@ -11970,8 +12053,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -11985,6 +12068,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_582", "image feature aggregate document": { "image feature document": [ @@ -12114,8 +12198,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -12129,6 +12213,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_589", "image feature aggregate document": { "image feature document": [ @@ -12258,8 +12343,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -12273,6 +12358,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_596", "image feature aggregate document": { "image feature document": [ @@ -12402,8 +12488,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -12417,6 +12503,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_603", "image feature aggregate document": { "image feature document": [ @@ -12546,8 +12633,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -12561,6 +12648,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_610", "image feature aggregate document": { "image feature document": [ @@ -12690,8 +12778,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -12705,6 +12793,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_617", "image feature aggregate document": { "image feature document": [ @@ -12834,8 +12923,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -12849,6 +12938,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_624", "image feature aggregate document": { "image feature document": [ @@ -12978,8 +13068,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -12993,6 +13083,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_631", "image feature aggregate document": { "image feature document": [ @@ -13122,8 +13213,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -13137,6 +13228,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_638", "image feature aggregate document": { "image feature document": [ @@ -13266,8 +13358,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -13281,6 +13373,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_645", "image feature aggregate document": { "image feature document": [ @@ -13410,8 +13503,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -13425,6 +13518,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_652", "image feature aggregate document": { "image feature document": [ @@ -13554,8 +13648,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -13569,6 +13663,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_659", "image feature aggregate document": { "image feature document": [ @@ -13698,8 +13793,8 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting": "8 bit", "Counting window size": "600x600", + "Counting": "8 bit", "Scanning": "8 bit" } } @@ -13713,6 +13808,7 @@ "processed data aggregate document": { "processed data document": [ { + "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_666", "image feature aggregate document": { "image feature document": [ From 06024c059c22914b24fd33ababb24890be2e828a Mon Sep 17 00:00:00 2001 From: Oscar Castro Date: Thu, 18 Sep 2025 14:41:11 -0500 Subject: [PATCH 4/5] remove empty property and unused logic --- .../ctl_immunospot/ctl_immunospot_reader.py | 2 +- .../ctl_immunospot_structure.py | 15 +- src/allotropy/parsers/utils/pandas.py | 7 +- .../testdata/ctl_immunospot_v7_0_38_8_QC.json | 480 +++++++----------- 4 files changed, 205 insertions(+), 299 deletions(-) diff --git a/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_reader.py b/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_reader.py index 8bfdb6a8bd..ab3da591fd 100644 --- a/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_reader.py +++ b/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_reader.py @@ -213,7 +213,7 @@ def fix_line(line: str) -> str: def split_multi_key_line(line: str) -> list[str]: """Split lines that contain multiple key-value pairs into separate lines.""" - line = line.strip().strip('"').strip() # Clean up quotes and whitespace + line = line.strip(' "') # Clean up quotes and whitespace # Case 1: Parenthetical format: (Auto Areas: Estimated, Manual Areas: Normalized) if line.startswith("(") and line.endswith(")") and "," in line: diff --git a/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_structure.py b/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_structure.py index 601b0c3b51..3104f4259f 100644 --- a/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_structure.py +++ b/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_structure.py @@ -36,6 +36,15 @@ def _create_measurement( header_data: dict[str, float | str | None], ) -> Measurement: location_identifier = f"{well_row}{well_col}" + data_processing_document = { + "Min. SpotSize": header_data.pop("Min. SpotSize", None), + "Max. SpotSize": header_data.pop("Max. SpotSize", None), + "Spot Separation": header_data.pop("Spot Separation", None), + } + has_data = any( + value is not None and str(value).strip() != "" + for value in data_processing_document.values() + ) return Measurement( type_=MeasurementType.OPTICAL_IMAGING, device_type=constants.DEVICE_TYPE, @@ -46,11 +55,7 @@ def _create_measurement( detection_type=constants.DETECTION_TYPE, processed_data=ProcessedData( identifier=random_uuid_str(), - data_processing_document={ - "Min. SpotSize": header_data.pop("Min. SpotSize", None), - "Max. SpotSize": header_data.pop("Max. SpotSize", None), - "Spot Separation": header_data.pop("Spot Separation", None), - }, + data_processing_document=data_processing_document if has_data else None, features=[ ImageFeature( identifier=random_uuid_str(), diff --git a/src/allotropy/parsers/utils/pandas.py b/src/allotropy/parsers/utils/pandas.py index be250db410..399d90e991 100644 --- a/src/allotropy/parsers/utils/pandas.py +++ b/src/allotropy/parsers/utils/pandas.py @@ -279,11 +279,8 @@ def _key_matches(self, match_key: str, key: str) -> bool: # "++" can cause re.compile to fail. Since it is never a valid regex expression # it is safe to escape it to prevent the error. match_key = match_key.replace("++", r"\+\+") - try: - return bool(re.fullmatch(match_key, key)) - except re.error: - # If the regex pattern is invalid, treat it as a literal string match - return key == match_key + + return bool(re.fullmatch(match_key, key)) def _get_matching_keys(self, key_or_keys: str | set[str]) -> set[str]: return { diff --git a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8_QC.json b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8_QC.json index 597a96de26..f3a45335d2 100644 --- a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8_QC.json +++ b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8_QC.json @@ -18,9 +18,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -33,7 +33,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_1", "image feature aggregate document": { "image feature document": [ @@ -163,9 +162,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -178,7 +177,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_8", "image feature aggregate document": { "image feature document": [ @@ -308,9 +306,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -323,7 +321,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_15", "image feature aggregate document": { "image feature document": [ @@ -453,9 +450,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -468,7 +465,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_22", "image feature aggregate document": { "image feature document": [ @@ -598,9 +594,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -613,7 +609,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_29", "image feature aggregate document": { "image feature document": [ @@ -743,9 +738,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -758,7 +753,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_36", "image feature aggregate document": { "image feature document": [ @@ -888,9 +882,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -903,7 +897,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_43", "image feature aggregate document": { "image feature document": [ @@ -1033,9 +1026,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -1048,7 +1041,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_50", "image feature aggregate document": { "image feature document": [ @@ -1178,9 +1170,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -1193,7 +1185,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_57", "image feature aggregate document": { "image feature document": [ @@ -1323,9 +1314,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -1338,7 +1329,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_64", "image feature aggregate document": { "image feature document": [ @@ -1468,9 +1458,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -1483,7 +1473,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_71", "image feature aggregate document": { "image feature document": [ @@ -1613,9 +1602,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -1628,7 +1617,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_78", "image feature aggregate document": { "image feature document": [ @@ -1758,9 +1746,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -1773,7 +1761,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_85", "image feature aggregate document": { "image feature document": [ @@ -1903,9 +1890,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -1918,7 +1905,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_92", "image feature aggregate document": { "image feature document": [ @@ -2048,9 +2034,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -2063,7 +2049,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_99", "image feature aggregate document": { "image feature document": [ @@ -2193,9 +2178,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -2208,7 +2193,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_106", "image feature aggregate document": { "image feature document": [ @@ -2338,9 +2322,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -2353,7 +2337,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_113", "image feature aggregate document": { "image feature document": [ @@ -2483,9 +2466,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -2498,7 +2481,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_120", "image feature aggregate document": { "image feature document": [ @@ -2628,9 +2610,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -2643,7 +2625,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_127", "image feature aggregate document": { "image feature document": [ @@ -2773,9 +2754,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -2788,7 +2769,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_134", "image feature aggregate document": { "image feature document": [ @@ -2918,9 +2898,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -2933,7 +2913,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_141", "image feature aggregate document": { "image feature document": [ @@ -3063,9 +3042,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -3078,7 +3057,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_148", "image feature aggregate document": { "image feature document": [ @@ -3208,9 +3186,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -3223,7 +3201,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_155", "image feature aggregate document": { "image feature document": [ @@ -3353,9 +3330,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -3368,7 +3345,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_162", "image feature aggregate document": { "image feature document": [ @@ -3498,9 +3474,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -3513,7 +3489,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_169", "image feature aggregate document": { "image feature document": [ @@ -3643,9 +3618,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -3658,7 +3633,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_176", "image feature aggregate document": { "image feature document": [ @@ -3788,9 +3762,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -3803,7 +3777,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_183", "image feature aggregate document": { "image feature document": [ @@ -3933,9 +3906,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -3948,7 +3921,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_190", "image feature aggregate document": { "image feature document": [ @@ -4078,9 +4050,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -4093,7 +4065,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_197", "image feature aggregate document": { "image feature document": [ @@ -4223,9 +4194,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -4238,7 +4209,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_204", "image feature aggregate document": { "image feature document": [ @@ -4368,9 +4338,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -4383,7 +4353,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_211", "image feature aggregate document": { "image feature document": [ @@ -4513,9 +4482,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -4528,7 +4497,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_218", "image feature aggregate document": { "image feature document": [ @@ -4658,9 +4626,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -4673,7 +4641,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_225", "image feature aggregate document": { "image feature document": [ @@ -4803,9 +4770,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -4818,7 +4785,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_232", "image feature aggregate document": { "image feature document": [ @@ -4948,9 +4914,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -4963,7 +4929,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_239", "image feature aggregate document": { "image feature document": [ @@ -5093,9 +5058,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -5108,7 +5073,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_246", "image feature aggregate document": { "image feature document": [ @@ -5238,9 +5202,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -5253,7 +5217,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_253", "image feature aggregate document": { "image feature document": [ @@ -5383,9 +5346,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -5398,7 +5361,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_260", "image feature aggregate document": { "image feature document": [ @@ -5528,9 +5490,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -5543,7 +5505,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_267", "image feature aggregate document": { "image feature document": [ @@ -5673,9 +5634,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -5688,7 +5649,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_274", "image feature aggregate document": { "image feature document": [ @@ -5818,9 +5778,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -5833,7 +5793,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_281", "image feature aggregate document": { "image feature document": [ @@ -5963,9 +5922,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -5978,7 +5937,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_288", "image feature aggregate document": { "image feature document": [ @@ -6108,9 +6066,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -6123,7 +6081,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_295", "image feature aggregate document": { "image feature document": [ @@ -6253,9 +6210,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -6268,7 +6225,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_302", "image feature aggregate document": { "image feature document": [ @@ -6398,9 +6354,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -6413,7 +6369,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_309", "image feature aggregate document": { "image feature document": [ @@ -6543,9 +6498,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -6558,7 +6513,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_316", "image feature aggregate document": { "image feature document": [ @@ -6688,9 +6642,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -6703,7 +6657,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_323", "image feature aggregate document": { "image feature document": [ @@ -6833,9 +6786,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -6848,7 +6801,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_330", "image feature aggregate document": { "image feature document": [ @@ -6978,9 +6930,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -6993,7 +6945,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_337", "image feature aggregate document": { "image feature document": [ @@ -7123,9 +7074,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -7138,7 +7089,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_344", "image feature aggregate document": { "image feature document": [ @@ -7268,9 +7218,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -7283,7 +7233,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_351", "image feature aggregate document": { "image feature document": [ @@ -7413,9 +7362,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -7428,7 +7377,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_358", "image feature aggregate document": { "image feature document": [ @@ -7558,9 +7506,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -7573,7 +7521,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_365", "image feature aggregate document": { "image feature document": [ @@ -7703,9 +7650,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -7718,7 +7665,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_372", "image feature aggregate document": { "image feature document": [ @@ -7848,9 +7794,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -7863,7 +7809,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_379", "image feature aggregate document": { "image feature document": [ @@ -7993,9 +7938,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -8008,7 +7953,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_386", "image feature aggregate document": { "image feature document": [ @@ -8138,9 +8082,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -8153,7 +8097,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_393", "image feature aggregate document": { "image feature document": [ @@ -8283,9 +8226,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -8298,7 +8241,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_400", "image feature aggregate document": { "image feature document": [ @@ -8428,9 +8370,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -8443,7 +8385,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_407", "image feature aggregate document": { "image feature document": [ @@ -8573,9 +8514,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -8588,7 +8529,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_414", "image feature aggregate document": { "image feature document": [ @@ -8718,9 +8658,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -8733,7 +8673,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_421", "image feature aggregate document": { "image feature document": [ @@ -8863,9 +8802,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -8878,7 +8817,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_428", "image feature aggregate document": { "image feature document": [ @@ -9008,9 +8946,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -9023,7 +8961,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_435", "image feature aggregate document": { "image feature document": [ @@ -9153,9 +9090,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -9168,7 +9105,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_442", "image feature aggregate document": { "image feature document": [ @@ -9298,9 +9234,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -9313,7 +9249,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_449", "image feature aggregate document": { "image feature document": [ @@ -9443,9 +9378,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -9458,7 +9393,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_456", "image feature aggregate document": { "image feature document": [ @@ -9588,9 +9522,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -9603,7 +9537,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_463", "image feature aggregate document": { "image feature document": [ @@ -9733,9 +9666,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -9748,7 +9681,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_470", "image feature aggregate document": { "image feature document": [ @@ -9878,9 +9810,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -9893,7 +9825,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_477", "image feature aggregate document": { "image feature document": [ @@ -10023,9 +9954,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -10038,7 +9969,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_484", "image feature aggregate document": { "image feature document": [ @@ -10168,9 +10098,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -10183,7 +10113,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_491", "image feature aggregate document": { "image feature document": [ @@ -10313,9 +10242,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -10328,7 +10257,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_498", "image feature aggregate document": { "image feature document": [ @@ -10458,9 +10386,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -10473,7 +10401,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_505", "image feature aggregate document": { "image feature document": [ @@ -10603,9 +10530,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -10618,7 +10545,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_512", "image feature aggregate document": { "image feature document": [ @@ -10748,9 +10674,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -10763,7 +10689,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_519", "image feature aggregate document": { "image feature document": [ @@ -10893,9 +10818,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -10908,7 +10833,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_526", "image feature aggregate document": { "image feature document": [ @@ -11038,9 +10962,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -11053,7 +10977,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_533", "image feature aggregate document": { "image feature document": [ @@ -11183,9 +11106,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -11198,7 +11121,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_540", "image feature aggregate document": { "image feature document": [ @@ -11328,9 +11250,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -11343,7 +11265,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_547", "image feature aggregate document": { "image feature document": [ @@ -11473,9 +11394,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -11488,7 +11409,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_554", "image feature aggregate document": { "image feature document": [ @@ -11618,9 +11538,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -11633,7 +11553,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_561", "image feature aggregate document": { "image feature document": [ @@ -11763,9 +11682,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -11778,7 +11697,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_568", "image feature aggregate document": { "image feature document": [ @@ -11908,9 +11826,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -11923,7 +11841,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_575", "image feature aggregate document": { "image feature document": [ @@ -12053,9 +11970,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -12068,7 +11985,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_582", "image feature aggregate document": { "image feature document": [ @@ -12198,9 +12114,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -12213,7 +12129,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_589", "image feature aggregate document": { "image feature document": [ @@ -12343,9 +12258,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -12358,7 +12273,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_596", "image feature aggregate document": { "image feature document": [ @@ -12488,9 +12402,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -12503,7 +12417,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_603", "image feature aggregate document": { "image feature document": [ @@ -12633,9 +12546,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -12648,7 +12561,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_610", "image feature aggregate document": { "image feature document": [ @@ -12778,9 +12690,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -12793,7 +12705,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_617", "image feature aggregate document": { "image feature document": [ @@ -12923,9 +12834,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -12938,7 +12849,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_624", "image feature aggregate document": { "image feature document": [ @@ -13068,9 +12978,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -13083,7 +12993,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_631", "image feature aggregate document": { "image feature document": [ @@ -13213,9 +13122,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -13228,7 +13137,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_638", "image feature aggregate document": { "image feature document": [ @@ -13358,9 +13266,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -13373,7 +13281,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_645", "image feature aggregate document": { "image feature document": [ @@ -13503,9 +13410,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -13518,7 +13425,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_652", "image feature aggregate document": { "image feature document": [ @@ -13648,9 +13554,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -13663,7 +13569,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_659", "image feature aggregate document": { "image feature document": [ @@ -13793,9 +13698,9 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting window size": "600x600", "Counting": "8 bit", - "Scanning": "8 bit" + "Scanning": "8 bit", + "Counting window size": "600x600" } } ] @@ -13808,7 +13713,6 @@ "processed data aggregate document": { "processed data document": [ { - "data processing document": {}, "processed data identifier": "CTL_IMMUNOSPOT_TEST_ID_666", "image feature aggregate document": { "image feature document": [ From 84f11df238af299a43c2a5980cd383bb17ac2fdf Mon Sep 17 00:00:00 2001 From: Oscar Castro Date: Thu, 18 Sep 2025 16:48:08 -0500 Subject: [PATCH 5/5] fix reader to avoid None rows --- src/allotropy/allotrope/converter.py | 14 +- .../ctl_immunospot/ctl_immunospot_reader.py | 4 +- .../testdata/ctl_immunospot_example1.json | 1152 +++++++------- .../testdata/ctl_immunospot_example2.json | 1344 ++++++++-------- .../testdata/ctl_immunospot_v7_0_38_8.json | 1346 ++++++++--------- 5 files changed, 1928 insertions(+), 1932 deletions(-) diff --git a/src/allotropy/allotrope/converter.py b/src/allotropy/allotrope/converter.py index f95bb2be6a..df90bf7429 100644 --- a/src/allotropy/allotrope/converter.py +++ b/src/allotropy/allotrope/converter.py @@ -5,7 +5,6 @@ from dataclasses import asdict, field, fields, is_dataclass, make_dataclass, MISSING from enum import Enum import keyword -import re from types import GenericAlias, UnionType from typing import ( Any, @@ -152,9 +151,6 @@ def add_custom_information_document( continue cleaned_dict[key] = value - # Filter out Python keywords - they can't be used as dataclass field names - cleaned_dict = {k: v for k, v in cleaned_dict.items() if not keyword.iskeyword(k)} - # If dict is empty after cleaning, do not attach. if not cleaned_dict: return model @@ -169,6 +165,8 @@ def add_custom_information_document( def _convert_model_key_to_dict_key(key: str) -> str: key = SPECIAL_KEYS.get(key, key) + if key.startswith("_KW"): + key = key[3:] if key.startswith("___") and key[3].isdigit(): key = key[3:] for dict_val, model_val in DICT_KEY_TO_MODEL_KEY_REPLACEMENTS.items(): @@ -178,16 +176,12 @@ def _convert_model_key_to_dict_key(key: str) -> str: def _convert_dict_to_model_key(key: str) -> str: key = SPECIAL_KEYS_INVERSE.get(key, key) + if keyword.iskeyword(key): + key = f"_KW{key}" if key[0].isdigit(): key = f"___{key}" for dict_val, model_val in DICT_KEY_TO_MODEL_KEY_REPLACEMENTS.items(): key = key.replace(dict_val, model_val) - - # Ensure the key is a valid Python identifier - if not key.isidentifier(): - # Remove leading/trailing quotes and other invalid characters - key = re.sub(r'^["\']+|["\']+$', "", key) - return key diff --git a/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_reader.py b/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_reader.py index ab3da591fd..5c89b000a4 100644 --- a/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_reader.py +++ b/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_reader.py @@ -235,7 +235,9 @@ def process_lines(raw_lines: list[str]) -> list[str]: for raw_line in raw_lines: for line in raw_line.split(";"): fixed_line = fix_line(line) - processed.extend(split_multi_key_line(fixed_line)) + # Only process lines that have colons (key: value format) + if ":" in fixed_line: + processed.extend(split_multi_key_line(fixed_line)) return processed # Process initial header lines diff --git a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example1.json b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example1.json index 4ef428bedc..f72079b2a7 100644 --- a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example1.json +++ b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example1.json @@ -18,17 +18,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -119,17 +119,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -220,17 +220,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -321,17 +321,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -422,17 +422,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -523,17 +523,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -624,17 +624,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -725,17 +725,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -826,17 +826,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -927,17 +927,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -1028,17 +1028,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -1129,17 +1129,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -1230,17 +1230,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -1331,17 +1331,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -1432,17 +1432,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -1533,17 +1533,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -1634,17 +1634,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -1735,17 +1735,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -1836,17 +1836,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -1937,17 +1937,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -2038,17 +2038,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -2139,17 +2139,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -2240,17 +2240,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -2341,17 +2341,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -2442,17 +2442,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -2543,17 +2543,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -2644,17 +2644,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -2745,17 +2745,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -2846,17 +2846,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -2947,17 +2947,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -3048,17 +3048,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -3149,17 +3149,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -3250,17 +3250,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -3351,17 +3351,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -3452,17 +3452,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -3553,17 +3553,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -3654,17 +3654,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -3755,17 +3755,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -3856,17 +3856,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -3957,17 +3957,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -4058,17 +4058,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -4159,17 +4159,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -4260,17 +4260,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -4361,17 +4361,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -4462,17 +4462,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -4563,17 +4563,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -4664,17 +4664,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -4765,17 +4765,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -4866,17 +4866,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -4967,17 +4967,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -5068,17 +5068,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -5169,17 +5169,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -5270,17 +5270,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -5371,17 +5371,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -5472,17 +5472,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -5573,17 +5573,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -5674,17 +5674,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -5775,17 +5775,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -5876,17 +5876,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -5977,17 +5977,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -6078,17 +6078,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -6179,17 +6179,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -6280,17 +6280,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -6381,17 +6381,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -6482,17 +6482,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -6583,17 +6583,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -6684,17 +6684,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -6785,17 +6785,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -6886,17 +6886,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -6987,17 +6987,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -7088,17 +7088,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -7189,17 +7189,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -7290,17 +7290,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -7391,17 +7391,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -7492,17 +7492,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -7593,17 +7593,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -7694,17 +7694,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -7795,17 +7795,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -7896,17 +7896,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -7997,17 +7997,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -8098,17 +8098,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -8199,17 +8199,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -8300,17 +8300,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -8401,17 +8401,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -8502,17 +8502,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -8603,17 +8603,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -8704,17 +8704,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -8805,17 +8805,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -8906,17 +8906,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -9007,17 +9007,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -9108,17 +9108,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -9209,17 +9209,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -9310,17 +9310,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -9411,17 +9411,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -9512,17 +9512,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] @@ -9613,17 +9613,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { - "Counting Mask Size(%)": 100.0, "Normalize Counts of Mask": "Off", "Sensitivity": 160.0, - "Edge Compensation Level": 1.0, "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", "Background Balance": 40.0, "Diffuseness": "Normal", - "Manual Areas": "Normalized", - "Counting window size": "1024x1024", - "Objects": "Normal", - "Edge Effect Compensation": "Off" + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" } } ] diff --git a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example2.json b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example2.json index 11766f2975..8301111764 100644 --- a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example2.json +++ b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example2.json @@ -18,17 +18,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -119,17 +119,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -220,17 +220,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -321,17 +321,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -422,17 +422,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -523,17 +523,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -624,17 +624,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -725,17 +725,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -826,17 +826,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -927,17 +927,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -1028,17 +1028,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -1129,17 +1129,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -1230,17 +1230,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -1331,17 +1331,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -1432,17 +1432,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -1533,17 +1533,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -1634,17 +1634,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -1735,17 +1735,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -1836,17 +1836,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -1937,17 +1937,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -2038,17 +2038,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -2139,17 +2139,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -2240,17 +2240,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -2341,17 +2341,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -2442,17 +2442,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -2543,17 +2543,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -2644,17 +2644,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -2745,17 +2745,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -2846,17 +2846,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -2947,17 +2947,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -3048,17 +3048,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -3149,17 +3149,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -3250,17 +3250,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -3351,17 +3351,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -3452,17 +3452,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -3553,17 +3553,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -3654,17 +3654,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -3755,17 +3755,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -3856,17 +3856,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -3957,17 +3957,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -4058,17 +4058,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -4159,17 +4159,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -4260,17 +4260,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -4361,17 +4361,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -4462,17 +4462,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -4563,17 +4563,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -4664,17 +4664,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -4765,17 +4765,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -4866,17 +4866,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -4967,17 +4967,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -5068,17 +5068,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -5169,17 +5169,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -5270,17 +5270,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -5371,17 +5371,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -5472,17 +5472,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -5573,17 +5573,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -5674,17 +5674,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -5775,17 +5775,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -5876,17 +5876,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -5977,17 +5977,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -6078,17 +6078,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -6179,17 +6179,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -6280,17 +6280,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -6381,17 +6381,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -6482,17 +6482,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -6583,17 +6583,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -6684,17 +6684,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -6785,17 +6785,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -6886,17 +6886,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -6987,17 +6987,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -7088,17 +7088,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", "Normalize Counts of Mask": "Off", - "Edge Compensation Level": 1.0, + "Counting Mask Size(%)": 100.0, "Auto Areas": "Estimated", - "Sensitivity": 160.0, "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", - "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -7189,17 +7189,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -7290,17 +7290,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -7391,17 +7391,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -7492,17 +7492,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -7593,17 +7593,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -7694,17 +7694,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -7795,17 +7795,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -7896,17 +7896,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -7997,17 +7997,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -8098,17 +8098,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -8199,17 +8199,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -8300,17 +8300,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -8401,17 +8401,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -8502,17 +8502,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -8603,17 +8603,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -8704,17 +8704,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -8805,17 +8805,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -8906,17 +8906,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -9007,17 +9007,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -9108,17 +9108,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -9209,17 +9209,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -9310,17 +9310,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -9411,17 +9411,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -9512,17 +9512,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] @@ -9613,17 +9613,17 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Objects": "Normal", "Diffuseness": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "Off", "Edge Compensation Level": 1.0, - "Auto Areas": "Estimated", "Sensitivity": 160.0, - "Counting window size": "1024x1024", - "Objects": "Normal", - "Manual Areas": "Normalized", + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", "Counting Mask Size(%)": 100.0, - "Edge Effect Compensation": "Off" + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" } } ] diff --git a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8.json b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8.json index bbdcebd600..d70a33b8dc 100644 --- a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8.json +++ b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_v7_0_38_8.json @@ -18,19 +18,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -188,19 +188,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -358,19 +358,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -528,19 +528,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -698,19 +698,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -868,19 +868,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -1038,19 +1038,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -1208,19 +1208,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -1378,19 +1378,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -1548,19 +1548,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -1718,19 +1718,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -1888,19 +1888,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -2058,19 +2058,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -2228,19 +2228,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -2398,19 +2398,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -2568,19 +2568,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -2738,19 +2738,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -2908,19 +2908,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -3078,19 +3078,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -3248,19 +3248,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -3418,19 +3418,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -3588,19 +3588,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -3758,19 +3758,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -3928,19 +3928,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -4098,19 +4098,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -4268,19 +4268,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -4438,19 +4438,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -4608,19 +4608,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -4778,19 +4778,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -4948,19 +4948,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -5118,19 +5118,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -5288,19 +5288,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -5458,19 +5458,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -5628,19 +5628,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -5798,19 +5798,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -5968,19 +5968,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -6138,19 +6138,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -6308,19 +6308,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -6478,19 +6478,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -6648,19 +6648,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -6818,19 +6818,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -6988,19 +6988,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -7158,19 +7158,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -7328,19 +7328,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -7498,19 +7498,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", - "Counting window size": "600x600", - "Edge Compensation Level": 1.0, "Counting": "8 bit", - "Objects": "Normal", "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Sensitivity": 190.0, + "Auto Areas": "Estimated", + "Counting window size": "600x600", + "Edge Compensation Level": 1.0, + "Objects": "Normal", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -7668,19 +7668,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -7838,19 +7838,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -8008,19 +8008,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -8178,19 +8178,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -8348,19 +8348,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -8518,19 +8518,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -8688,19 +8688,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -8858,19 +8858,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -9028,19 +9028,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -9198,19 +9198,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -9368,19 +9368,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -9538,19 +9538,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -9708,19 +9708,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -9878,19 +9878,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -10048,19 +10048,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -10218,19 +10218,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -10388,19 +10388,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -10558,19 +10558,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -10728,19 +10728,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -10898,19 +10898,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -11068,19 +11068,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -11238,19 +11238,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -11408,19 +11408,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -11578,19 +11578,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -11748,19 +11748,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -11918,19 +11918,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", + "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", - "Manual Areas": "Normalized", + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -12088,19 +12088,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -12258,19 +12258,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -12428,19 +12428,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -12598,19 +12598,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -12768,19 +12768,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -12938,19 +12938,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -13108,19 +13108,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -13278,19 +13278,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -13448,19 +13448,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -13618,19 +13618,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -13788,19 +13788,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -13958,19 +13958,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -14128,19 +14128,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -14298,19 +14298,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -14468,19 +14468,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -14638,19 +14638,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -14808,19 +14808,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -14978,19 +14978,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -15148,19 +15148,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -15318,19 +15318,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -15488,19 +15488,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -15658,19 +15658,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -15828,19 +15828,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -15998,19 +15998,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ] @@ -16168,19 +16168,19 @@ "device type": "imager", "detection type": "optical-imaging", "custom information document": { + "Normalize Counts of Mask": "On", "Scanning": "8 bit", - "Sensitivity": 190.0, - "Edge Effect Compensation": "Off", "Manual Areas": "Normalized", + "Counting": "8 bit", + "Background Balance": 40.0, + "Sensitivity": 190.0, + "Auto Areas": "Estimated", "Counting window size": "600x600", "Edge Compensation Level": 1.0, - "Counting": "8 bit", "Objects": "Normal", - "Background Balance": 40.0, - "Normalize Counts of Mask": "On", + "Edge Effect Compensation": "Off", "Counting Mask Size(%)": 85.0, - "Diffuseness": "Large", - "Auto Areas": "Estimated" + "Diffuseness": "Large" } } ]