diff --git a/src/allotropy/allotrope/converter.py b/src/allotropy/allotrope/converter.py index b4a4630018..df90bf7429 100644 --- a/src/allotropy/allotrope/converter.py +++ b/src/allotropy/allotrope/converter.py @@ -4,6 +4,7 @@ from collections.abc import Callable, Mapping, Sequence from dataclasses import asdict, field, fields, is_dataclass, make_dataclass, MISSING from enum import Enum +import keyword from types import GenericAlias, UnionType from typing import ( Any, @@ -164,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(): @@ -173,6 +176,8 @@ 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(): diff --git a/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_reader.py b/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_reader.py index 5e4a49046f..5c89b000a4 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,47 @@ 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(' "') # 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) + # 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 + 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 79a954df2d..3104f4259f 100644 --- a/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_structure.py +++ b/src/allotropy/parsers/ctl_immunospot/ctl_immunospot_structure.py @@ -33,8 +33,18 @@ 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}" + 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, @@ -45,6 +55,7 @@ def _create_measurement( detection_type=constants.DETECTION_TYPE, processed_data=ProcessedData( identifier=random_uuid_str(), + data_processing_document=data_processing_document if has_data else None, features=[ ImageFeature( identifier=random_uuid_str(), @@ -77,6 +88,7 @@ def _create_measurement( ] if histograms and location_identifier in histograms else None, + device_control_custom_info=header_data, ) @@ -94,16 +106,28 @@ 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.copy(), ) ], + custom_info=custom_info, ) for row in first_plate.index for col in first_plate.columns diff --git a/src/allotropy/parsers/utils/pandas.py b/src/allotropy/parsers/utils/pandas.py index 5b1e47f841..399d90e991 100644 --- a/src/allotropy/parsers/utils/pandas.py +++ b/src/allotropy/parsers/utils/pandas.py @@ -279,6 +279,7 @@ 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)) def _get_matching_keys(self, key_or_keys: str | set[str]) -> set[str]: diff --git a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example1.json b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example1.json index a504d586eb..f72079b2a7 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": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -28,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": [ @@ -78,7 +96,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -96,7 +117,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -108,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": [ @@ -158,7 +197,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -176,7 +218,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -188,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": [ @@ -238,7 +298,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -256,7 +319,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -268,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": [ @@ -318,7 +399,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -336,7 +420,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -348,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": [ @@ -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", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -428,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": [ @@ -478,7 +601,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -496,7 +622,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -508,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": [ @@ -558,7 +702,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -576,7 +723,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -588,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": [ @@ -638,7 +803,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -656,7 +824,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -668,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": [ @@ -718,7 +904,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -736,7 +925,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -748,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": [ @@ -798,7 +1005,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -816,7 +1026,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -828,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": [ @@ -878,7 +1106,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -896,7 +1127,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -908,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": [ @@ -958,7 +1207,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -976,7 +1228,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -988,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": [ @@ -1038,7 +1308,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1056,7 +1329,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -1068,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": [ @@ -1118,7 +1409,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1136,7 +1430,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -1148,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": [ @@ -1198,7 +1510,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1216,7 +1531,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -1228,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": [ @@ -1278,7 +1611,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1296,7 +1632,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -1308,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": [ @@ -1358,7 +1712,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1376,7 +1733,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -1388,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": [ @@ -1438,7 +1813,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1456,7 +1834,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -1468,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": [ @@ -1518,7 +1914,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1536,7 +1935,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -1548,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": [ @@ -1598,7 +2015,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1616,7 +2036,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -1628,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": [ @@ -1678,7 +2116,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1696,7 +2137,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -1708,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": [ @@ -1758,7 +2217,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1776,7 +2238,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -1788,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": [ @@ -1838,7 +2318,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1856,7 +2339,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -1868,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": [ @@ -1918,7 +2419,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1936,7 +2440,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -1948,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": [ @@ -1998,7 +2520,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2016,7 +2541,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -2028,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": [ @@ -2078,7 +2621,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2096,7 +2642,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -2108,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": [ @@ -2158,7 +2722,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2176,7 +2743,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -2188,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": [ @@ -2238,7 +2823,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2256,7 +2844,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -2268,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": [ @@ -2318,7 +2924,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2336,7 +2945,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -2348,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": [ @@ -2398,7 +3025,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2416,7 +3046,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -2428,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": [ @@ -2478,7 +3126,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2496,7 +3147,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -2508,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": [ @@ -2558,7 +3227,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2576,7 +3248,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -2588,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": [ @@ -2638,7 +3328,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2656,7 +3349,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -2668,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": [ @@ -2718,7 +3429,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2736,7 +3450,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -2748,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": [ @@ -2798,7 +3530,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2816,7 +3551,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -2828,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": [ @@ -2878,7 +3631,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2896,7 +3652,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -2908,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": [ @@ -2958,7 +3732,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2976,7 +3753,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -2988,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": [ @@ -3038,7 +3833,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3056,7 +3854,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -3068,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": [ @@ -3118,7 +3934,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3136,7 +3955,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -3148,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": [ @@ -3198,7 +4035,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3216,7 +4056,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -3228,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": [ @@ -3278,7 +4136,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3296,7 +4157,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -3308,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": [ @@ -3358,7 +4237,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3376,7 +4258,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -3388,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": [ @@ -3438,7 +4338,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3456,7 +4359,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -3468,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": [ @@ -3518,7 +4439,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3536,7 +4460,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -3548,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": [ @@ -3598,7 +4540,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3616,7 +4561,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -3628,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": [ @@ -3678,7 +4641,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3696,7 +4662,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -3708,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": [ @@ -3758,7 +4742,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3776,7 +4763,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -3788,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": [ @@ -3838,7 +4843,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3856,7 +4864,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -3868,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": [ @@ -3918,7 +4944,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3936,7 +4965,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -3948,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": [ @@ -3998,7 +5045,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4016,7 +5066,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -4028,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": [ @@ -4078,7 +5146,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4096,7 +5167,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -4108,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": [ @@ -4158,7 +5247,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4176,7 +5268,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -4188,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": [ @@ -4238,7 +5348,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4256,7 +5369,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -4268,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": [ @@ -4318,7 +5449,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4336,7 +5470,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -4348,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": [ @@ -4398,7 +5550,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4416,7 +5571,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -4428,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": [ @@ -4478,7 +5651,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4496,7 +5672,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -4508,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": [ @@ -4558,7 +5752,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4576,7 +5773,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -4588,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": [ @@ -4638,7 +5853,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4656,7 +5874,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -4668,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": [ @@ -4718,7 +5954,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4736,7 +5975,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -4748,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": [ @@ -4798,7 +6055,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4816,7 +6076,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -4828,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": [ @@ -4878,7 +6156,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4896,7 +6177,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -4908,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": [ @@ -4958,7 +6257,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4976,7 +6278,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -4988,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": [ @@ -5038,7 +6358,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5056,7 +6379,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -5068,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": [ @@ -5118,7 +6459,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5136,7 +6480,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -5148,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": [ @@ -5198,7 +6560,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5216,7 +6581,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -5228,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": [ @@ -5278,7 +6661,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5296,7 +6682,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -5308,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": [ @@ -5358,7 +6762,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5376,7 +6783,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -5388,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": [ @@ -5438,7 +6863,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5456,7 +6884,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -5468,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": [ @@ -5518,7 +6964,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5536,7 +6985,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -5548,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": [ @@ -5598,7 +7065,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5616,7 +7086,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -5628,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": [ @@ -5678,7 +7166,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5696,7 +7187,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -5708,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": [ @@ -5758,7 +7267,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5776,7 +7288,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -5788,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": [ @@ -5838,7 +7368,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5856,7 +7389,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -5868,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": [ @@ -5918,7 +7469,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5936,7 +7490,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -5948,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": [ @@ -5998,7 +7570,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6016,7 +7591,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -6028,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": [ @@ -6078,7 +7671,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6096,7 +7692,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -6108,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": [ @@ -6158,7 +7772,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6176,7 +7793,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -6188,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": [ @@ -6238,7 +7873,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6256,7 +7894,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -6268,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": [ @@ -6318,7 +7974,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6336,7 +7995,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -6348,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": [ @@ -6398,7 +8075,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6416,7 +8096,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -6428,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": [ @@ -6478,7 +8176,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6496,7 +8197,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -6508,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": [ @@ -6558,7 +8277,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6576,7 +8298,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -6588,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": [ @@ -6638,7 +8378,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6656,7 +8399,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -6668,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": [ @@ -6718,7 +8479,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6736,7 +8500,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -6748,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": [ @@ -6798,7 +8580,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6816,7 +8601,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -6828,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": [ @@ -6878,7 +8681,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6896,7 +8702,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -6908,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": [ @@ -6958,7 +8782,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6976,7 +8803,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -6988,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": [ @@ -7038,7 +8883,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7056,7 +8904,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -7068,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": [ @@ -7118,7 +8984,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7136,7 +9005,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -7148,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": [ @@ -7198,7 +9085,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7216,7 +9106,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -7228,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": [ @@ -7278,7 +9186,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7296,7 +9207,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -7308,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": [ @@ -7358,7 +9287,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7376,7 +9308,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -7388,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": [ @@ -7438,7 +9388,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7456,7 +9409,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -7468,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": [ @@ -7518,7 +9489,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7536,7 +9510,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -7548,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": [ @@ -7598,7 +9590,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7616,7 +9611,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Normalize Counts of Mask": "Off", + "Sensitivity": 160.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Counting Mask Size(%)": 100.0, + "Manual Areas": "Normalized", + "Background Balance": 40.0, + "Diffuseness": "Normal", + "Edge Effect Compensation": "Off", + "Edge Compensation Level": 1.0, + "Objects": "Normal" + } } ] }, @@ -7628,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": [ @@ -7678,7 +9691,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" } @@ -7696,7 +9712,7 @@ "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" } } } diff --git a/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example2.json b/tests/parsers/ctl_immunospot/testdata/ctl_immunospot_example2.json index 1ce91d7409..8301111764 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": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -28,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": [ @@ -78,7 +96,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -96,7 +117,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -108,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": [ @@ -158,7 +197,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -176,7 +218,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -188,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": [ @@ -238,7 +298,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -256,7 +319,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -268,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": [ @@ -318,7 +399,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -336,7 +420,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -348,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": [ @@ -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": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -428,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": [ @@ -478,7 +601,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -496,7 +622,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -508,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": [ @@ -558,7 +702,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -576,7 +723,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -588,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": [ @@ -638,7 +803,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -656,7 +824,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -668,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": [ @@ -718,7 +904,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -736,7 +925,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -748,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": [ @@ -798,7 +1005,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -816,7 +1026,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -828,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": [ @@ -878,7 +1106,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -896,7 +1127,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -908,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": [ @@ -958,7 +1207,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -976,7 +1228,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -988,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": [ @@ -1038,7 +1308,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1056,7 +1329,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -1068,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": [ @@ -1118,7 +1409,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1136,7 +1430,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -1148,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": [ @@ -1198,7 +1510,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1216,7 +1531,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -1228,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": [ @@ -1278,7 +1611,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1296,7 +1632,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -1308,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": [ @@ -1358,7 +1712,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1376,7 +1733,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -1388,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": [ @@ -1438,7 +1813,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1456,7 +1834,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -1468,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": [ @@ -1518,7 +1914,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1536,7 +1935,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -1548,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": [ @@ -1598,7 +2015,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1616,7 +2036,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -1628,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": [ @@ -1678,7 +2116,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1696,7 +2137,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -1708,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": [ @@ -1758,7 +2217,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1776,7 +2238,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -1788,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": [ @@ -1838,7 +2318,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1856,7 +2339,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -1868,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": [ @@ -1918,7 +2419,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -1936,7 +2440,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -1948,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": [ @@ -1998,7 +2520,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2016,7 +2541,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -2028,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": [ @@ -2078,7 +2621,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2096,7 +2642,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -2108,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": [ @@ -2158,7 +2722,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2176,7 +2743,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -2188,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": [ @@ -2238,7 +2823,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2256,7 +2844,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -2268,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": [ @@ -2318,7 +2924,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2336,7 +2945,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -2348,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": [ @@ -2398,7 +3025,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2416,7 +3046,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -2428,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": [ @@ -2478,7 +3126,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2496,7 +3147,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -2508,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": [ @@ -2558,7 +3227,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2576,7 +3248,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -2588,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": [ @@ -2638,7 +3328,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2656,7 +3349,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -2668,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": [ @@ -2718,7 +3429,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2736,7 +3450,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -2748,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": [ @@ -2798,7 +3530,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2816,7 +3551,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -2828,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": [ @@ -2878,7 +3631,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2896,7 +3652,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -2908,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": [ @@ -2958,7 +3732,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -2976,7 +3753,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -2988,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": [ @@ -3038,7 +3833,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3056,7 +3854,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -3068,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": [ @@ -3118,7 +3934,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3136,7 +3955,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -3148,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": [ @@ -3198,7 +4035,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3216,7 +4056,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -3228,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": [ @@ -3278,7 +4136,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3296,7 +4157,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -3308,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": [ @@ -3358,7 +4237,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3376,7 +4258,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -3388,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": [ @@ -3438,7 +4338,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3456,7 +4359,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -3468,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": [ @@ -3518,7 +4439,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3536,7 +4460,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -3548,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": [ @@ -3598,7 +4540,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3616,7 +4561,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -3628,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": [ @@ -3678,7 +4641,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3696,7 +4662,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -3708,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": [ @@ -3758,7 +4742,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3776,7 +4763,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -3788,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": [ @@ -3838,7 +4843,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3856,7 +4864,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -3868,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": [ @@ -3918,7 +4944,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -3936,7 +4965,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -3948,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": [ @@ -3998,7 +5045,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4016,7 +5066,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -4028,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": [ @@ -4078,7 +5146,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4096,7 +5167,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -4108,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": [ @@ -4158,7 +5247,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4176,7 +5268,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -4188,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": [ @@ -4238,7 +5348,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4256,7 +5369,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -4268,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": [ @@ -4318,7 +5449,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4336,7 +5470,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -4348,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": [ @@ -4398,7 +5550,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4416,7 +5571,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -4428,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": [ @@ -4478,7 +5651,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4496,7 +5672,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -4508,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": [ @@ -4558,7 +5752,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4576,7 +5773,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -4588,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": [ @@ -4638,7 +5853,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4656,7 +5874,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -4668,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": [ @@ -4718,7 +5954,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4736,7 +5975,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -4748,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": [ @@ -4798,7 +6055,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4816,7 +6076,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -4828,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": [ @@ -4878,7 +6156,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4896,7 +6177,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -4908,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": [ @@ -4958,7 +6257,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -4976,7 +6278,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -4988,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": [ @@ -5038,7 +6358,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5056,7 +6379,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -5068,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": [ @@ -5118,7 +6459,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5136,7 +6480,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -5148,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": [ @@ -5198,7 +6560,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5216,7 +6581,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -5228,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": [ @@ -5278,7 +6661,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5296,7 +6682,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -5308,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": [ @@ -5358,7 +6762,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5376,7 +6783,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -5388,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": [ @@ -5438,7 +6863,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5456,7 +6884,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -5468,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": [ @@ -5518,7 +6964,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5536,7 +6985,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -5548,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": [ @@ -5598,7 +7065,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5616,7 +7086,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -5628,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": [ @@ -5678,7 +7166,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5696,7 +7187,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -5708,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": [ @@ -5758,7 +7267,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5776,7 +7288,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -5788,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": [ @@ -5838,7 +7368,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5856,7 +7389,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -5868,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": [ @@ -5918,7 +7469,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -5936,7 +7490,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -5948,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": [ @@ -5998,7 +7570,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6016,7 +7591,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -6028,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": [ @@ -6078,7 +7671,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6096,7 +7692,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -6108,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": [ @@ -6158,7 +7772,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6176,7 +7793,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -6188,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": [ @@ -6238,7 +7873,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6256,7 +7894,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -6268,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": [ @@ -6318,7 +7974,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6336,7 +7995,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -6348,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": [ @@ -6398,7 +8075,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6416,7 +8096,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -6428,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": [ @@ -6478,7 +8176,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6496,7 +8197,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -6508,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": [ @@ -6558,7 +8277,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6576,7 +8298,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -6588,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": [ @@ -6638,7 +8378,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6656,7 +8399,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -6668,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": [ @@ -6718,7 +8479,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6736,7 +8500,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -6748,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": [ @@ -6798,7 +8580,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6816,7 +8601,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -6828,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": [ @@ -6878,7 +8681,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6896,7 +8702,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -6908,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": [ @@ -6958,7 +8782,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -6976,7 +8803,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -6988,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": [ @@ -7038,7 +8883,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7056,7 +8904,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -7068,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": [ @@ -7118,7 +8984,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7136,7 +9005,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -7148,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": [ @@ -7198,7 +9085,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7216,7 +9106,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -7228,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": [ @@ -7278,7 +9186,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7296,7 +9207,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -7308,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": [ @@ -7358,7 +9287,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7376,7 +9308,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -7388,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": [ @@ -7438,7 +9388,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7456,7 +9409,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -7468,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": [ @@ -7518,7 +9489,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7536,7 +9510,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -7548,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": [ @@ -7598,7 +9590,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" }, @@ -7616,7 +9611,20 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Objects": "Normal", + "Diffuseness": "Normal", + "Edge Compensation Level": 1.0, + "Sensitivity": 160.0, + "Edge Effect Compensation": "Off", + "Normalize Counts of Mask": "Off", + "Counting Mask Size(%)": 100.0, + "Auto Areas": "Estimated", + "Counting window size": "1024x1024", + "Background Balance": 40.0, + "Manual Areas": "Normalized" + } } ] }, @@ -7628,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": [ @@ -7678,7 +9691,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'NORTHAMERICA\\foo'" } @@ -7696,7 +9712,7 @@ "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" } } } 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..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 @@ -16,7 +16,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -28,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": [ @@ -145,7 +165,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -163,7 +186,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -175,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": [ @@ -292,7 +335,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -310,7 +356,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -322,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": [ @@ -439,7 +505,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -457,7 +526,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -469,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": [ @@ -586,7 +675,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -604,7 +696,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -616,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": [ @@ -733,7 +845,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -751,7 +866,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -763,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": [ @@ -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": { + "Normalize Counts of Mask": "On", + "Scanning": "8 bit", + "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, + "Objects": "Normal", + "Edge Effect Compensation": "Off", + "Counting Mask Size(%)": 85.0, + "Diffuseness": "Large" + } } ] }, @@ -910,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": [ @@ -1027,7 +1185,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -1045,7 +1206,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -1057,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": [ @@ -1174,7 +1355,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -1192,7 +1376,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -1204,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": [ @@ -1321,7 +1525,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -1339,7 +1546,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -1351,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": [ @@ -1468,7 +1695,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -1486,7 +1716,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -1498,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": [ @@ -1615,7 +1865,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -1633,7 +1886,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -1645,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": [ @@ -1762,7 +2035,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -1780,7 +2056,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -1792,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": [ @@ -1909,7 +2205,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -1927,7 +2226,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -1939,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": [ @@ -2056,7 +2375,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -2074,7 +2396,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -2086,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": [ @@ -2203,7 +2545,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -2221,7 +2566,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -2233,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": [ @@ -2350,7 +2715,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -2368,7 +2736,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -2380,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": [ @@ -2497,7 +2885,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -2515,7 +2906,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -2527,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": [ @@ -2644,7 +3055,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -2662,7 +3076,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -2674,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": [ @@ -2791,7 +3225,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -2809,7 +3246,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -2821,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": [ @@ -2938,7 +3395,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -2956,7 +3416,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -2968,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": [ @@ -3085,7 +3565,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -3103,7 +3586,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -3115,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": [ @@ -3232,7 +3735,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -3250,7 +3756,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -3262,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": [ @@ -3379,7 +3905,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -3397,7 +3926,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -3409,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": [ @@ -3526,7 +4075,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -3544,7 +4096,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -3556,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": [ @@ -3673,7 +4245,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -3691,7 +4266,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -3703,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": [ @@ -3820,7 +4415,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -3838,7 +4436,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -3850,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": [ @@ -3967,7 +4585,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -3985,7 +4606,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -3997,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": [ @@ -4114,7 +4755,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -4132,7 +4776,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -4144,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": [ @@ -4261,7 +4925,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -4279,7 +4946,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -4291,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": [ @@ -4408,7 +5095,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -4426,7 +5116,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -4438,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": [ @@ -4555,7 +5265,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -4573,7 +5286,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -4585,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": [ @@ -4702,7 +5435,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -4720,7 +5456,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -4732,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": [ @@ -4849,7 +5605,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -4867,7 +5626,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -4879,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": [ @@ -4996,7 +5775,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -5014,7 +5796,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -5026,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": [ @@ -5143,7 +5945,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -5161,7 +5966,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -5173,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": [ @@ -5290,7 +6115,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -5308,7 +6136,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -5320,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": [ @@ -5437,7 +6285,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -5455,7 +6306,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -5467,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": [ @@ -5584,7 +6455,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -5602,7 +6476,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -5614,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": [ @@ -5731,7 +6625,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -5749,7 +6646,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -5761,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": [ @@ -5878,7 +6795,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -5896,7 +6816,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -5908,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": [ @@ -6025,7 +6965,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -6043,7 +6986,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -6055,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": [ @@ -6172,7 +7135,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -6190,7 +7156,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -6202,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": [ @@ -6319,7 +7305,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -6337,7 +7326,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -6349,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": [ @@ -6466,7 +7475,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -6484,7 +7496,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -6496,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": [ @@ -6613,7 +7645,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -6631,7 +7666,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -6643,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": [ @@ -6760,7 +7815,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -6778,7 +7836,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -6790,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": [ @@ -6907,7 +7985,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -6925,7 +8006,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -6937,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": [ @@ -7054,7 +8155,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -7072,7 +8176,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -7084,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": [ @@ -7201,7 +8325,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -7219,7 +8346,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -7231,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": [ @@ -7348,7 +8495,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -7366,7 +8516,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -7378,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": [ @@ -7495,7 +8665,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -7513,7 +8686,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -7525,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": [ @@ -7642,7 +8835,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -7660,7 +8856,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -7672,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": [ @@ -7789,7 +9005,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -7807,7 +9026,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -7819,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": [ @@ -7936,7 +9175,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -7954,7 +9196,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -7966,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": [ @@ -8083,7 +9345,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -8101,7 +9366,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -8113,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": [ @@ -8230,7 +9515,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -8248,7 +9536,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -8260,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": [ @@ -8377,7 +9685,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -8395,7 +9706,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -8407,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": [ @@ -8524,7 +9855,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -8542,7 +9876,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -8554,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": [ @@ -8671,7 +10025,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -8689,7 +10046,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -8701,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": [ @@ -8818,7 +10195,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -8836,7 +10216,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -8848,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": [ @@ -8965,7 +10365,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -8983,7 +10386,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -8995,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": [ @@ -9112,7 +10535,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -9130,7 +10556,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -9142,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": [ @@ -9259,7 +10705,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -9277,7 +10726,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -9289,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": [ @@ -9406,7 +10875,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -9424,7 +10896,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -9436,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": [ @@ -9553,7 +11045,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -9571,7 +11066,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -9583,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": [ @@ -9700,7 +11215,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -9718,7 +11236,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -9730,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": [ @@ -9847,7 +11385,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -9865,7 +11406,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -9877,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": [ @@ -9994,7 +11555,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -10012,7 +11576,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -10024,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": [ @@ -10141,7 +11725,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -10159,7 +11746,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -10171,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": [ @@ -10288,7 +11895,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -10306,7 +11916,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -10318,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": [ @@ -10435,7 +12065,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -10453,7 +12086,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -10465,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": [ @@ -10582,7 +12235,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -10600,7 +12256,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -10612,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": [ @@ -10729,7 +12405,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -10747,7 +12426,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -10759,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": [ @@ -10876,7 +12575,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -10894,7 +12596,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -10906,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": [ @@ -11023,7 +12745,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -11041,7 +12766,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -11053,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": [ @@ -11170,7 +12915,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -11188,7 +12936,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -11200,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": [ @@ -11317,7 +13085,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -11335,7 +13106,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -11347,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": [ @@ -11464,7 +13255,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -11482,7 +13276,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -11494,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": [ @@ -11611,7 +13425,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -11629,7 +13446,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -11641,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": [ @@ -11758,7 +13595,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -11776,7 +13616,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -11788,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": [ @@ -11905,7 +13765,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -11923,7 +13786,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -11935,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": [ @@ -12052,7 +13935,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -12070,7 +13956,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -12082,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": [ @@ -12199,7 +14105,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -12217,7 +14126,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -12229,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": [ @@ -12346,7 +14275,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -12364,7 +14296,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -12376,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": [ @@ -12493,7 +14445,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -12511,7 +14466,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -12523,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": [ @@ -12640,7 +14615,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -12658,7 +14636,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -12670,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": [ @@ -12787,7 +14785,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -12805,7 +14806,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -12817,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": [ @@ -12934,7 +14955,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -12952,7 +14976,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -12964,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": [ @@ -13081,7 +15125,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -13099,7 +15146,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -13111,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": [ @@ -13228,7 +15295,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -13246,7 +15316,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -13258,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": [ @@ -13375,7 +15465,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -13393,7 +15486,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -13405,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": [ @@ -13522,7 +15635,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -13540,7 +15656,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -13552,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": [ @@ -13669,7 +15805,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -13687,7 +15826,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -13699,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": [ @@ -13816,7 +15975,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -13834,7 +15996,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -13846,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": [ @@ -13963,7 +16145,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" }, @@ -13981,7 +16166,22 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "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, + "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" + } } ] }, @@ -13993,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": [ @@ -14110,7 +16315,10 @@ } } ], - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay": "1" + } }, "analyst": "'USER'" } @@ -14128,7 +16336,7 @@ "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" } } } 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..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 @@ -16,7 +16,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -155,7 +160,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -294,7 +304,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -433,7 +448,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -572,7 +592,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -711,7 +736,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -850,7 +880,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -989,7 +1024,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -1128,7 +1168,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -1267,7 +1312,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -1406,7 +1456,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -1545,7 +1600,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -1684,7 +1744,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -1823,7 +1888,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -1962,7 +2032,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -2101,7 +2176,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -2240,7 +2320,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -2379,7 +2464,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -2518,7 +2608,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -2657,7 +2752,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -2796,7 +2896,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -2935,7 +3040,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -3074,7 +3184,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -3213,7 +3328,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -3352,7 +3472,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -3491,7 +3616,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -3630,7 +3760,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -3769,7 +3904,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -3908,7 +4048,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -4047,7 +4192,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -4186,7 +4336,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -4325,7 +4480,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -4464,7 +4624,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -4603,7 +4768,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -4742,7 +4912,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -4881,7 +5056,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -5020,7 +5200,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -5159,7 +5344,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -5298,7 +5488,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -5437,7 +5632,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -5576,7 +5776,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -5715,7 +5920,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -5854,7 +6064,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -5993,7 +6208,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -6132,7 +6352,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -6271,7 +6496,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -6410,7 +6640,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -6549,7 +6784,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -6688,7 +6928,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -6827,7 +7072,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -6966,7 +7216,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -7105,7 +7360,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -7244,7 +7504,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -7383,7 +7648,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -7522,7 +7792,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -7661,7 +7936,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -7800,7 +8080,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -7939,7 +8224,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -8078,7 +8368,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -8217,7 +8512,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -8356,7 +8656,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -8495,7 +8800,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -8634,7 +8944,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -8773,7 +9088,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -8912,7 +9232,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -9051,7 +9376,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -9190,7 +9520,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -9329,7 +9664,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -9468,7 +9808,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -9607,7 +9952,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -9746,7 +10096,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -9885,7 +10240,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -10024,7 +10384,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -10163,7 +10528,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -10302,7 +10672,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -10441,7 +10816,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -10580,7 +10960,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -10719,7 +11104,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -10858,7 +11248,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -10997,7 +11392,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -11136,7 +11536,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -11275,7 +11680,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -11414,7 +11824,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -11553,7 +11968,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -11692,7 +12112,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -11831,7 +12256,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -11970,7 +12400,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -12109,7 +12544,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -12248,7 +12688,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -12387,7 +12832,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -12526,7 +12976,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -12665,7 +13120,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -12804,7 +13264,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -12943,7 +13408,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -13082,7 +13552,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -13221,7 +13696,12 @@ "device control document": [ { "device type": "imager", - "detection type": "optical-imaging" + "detection type": "optical-imaging", + "custom information document": { + "Counting": "8 bit", + "Scanning": "8 bit", + "Counting window size": "600x600" + } } ] }, @@ -13360,7 +13840,7 @@ "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" } } }