diff --git a/src/allotropy/parsers/cytiva_biacore_insight/cytiva_biacore_insight_structure.py b/src/allotropy/parsers/cytiva_biacore_insight/cytiva_biacore_insight_structure.py index 8e2685869..6d34502c8 100644 --- a/src/allotropy/parsers/cytiva_biacore_insight/cytiva_biacore_insight_structure.py +++ b/src/allotropy/parsers/cytiva_biacore_insight/cytiva_biacore_insight_structure.py @@ -101,6 +101,112 @@ def _get_capture_custom_info( return capture_info +def _get_analyte_custom_info( + first_row_data: SeriesData, channel_data: pd.DataFrame +) -> dict[str, Any | None]: + """ + Dynamically extract all Analyte columns (Analyte 1-N) that exist in the data. + + Args: + first_row_data: SeriesData from first row of channel data + channel_data: DataFrame with channel data + + Returns: + Dictionary with all available Analyte fields + """ + analyte_info: dict[str, Any | None] = {} + + # OPTIMIZATION: Get column set once for fast lookups + columns_set = set(channel_data.columns) + + # Check for Analyte 1-10 (scan up to 10, typical max) + for analyte_num in range(1, 11): + solution_col = f"Analyte {analyte_num} Solution" + + # Only process if this analyte's solution column exists + if solution_col not in columns_set: + continue + + # Add Solution field + analyte_info[solution_col] = first_row_data.get(str, solution_col) + + # Add other Analyte fields if they exist + for field in ["Plate id", "Position", "Control type"]: + col_name = f"Analyte {analyte_num} {field}" + if col_name in columns_set: + analyte_info[col_name] = first_row_data.get(str, col_name) + + # Add Concentration field (can be in nM, µM, or µg/ml) + concentration: TQuantityValueNanomolar | TQuantityValueMicrogramPerMilliliter | None = ( + None + ) + for unit_suffix in ["(nM)", "(µM)", "(µg/ml)"]: + conc_col = f"Analyte {analyte_num} Concentration {unit_suffix}" + if conc_col in columns_set: + if unit_suffix == "(nM)": + concentration = quantity_or_none( + TQuantityValueNanomolar, + first_row_data.get(float, conc_col), + ) + elif unit_suffix == "(µg/ml)": + concentration = quantity_or_none( + TQuantityValueMicrogramPerMilliliter, + first_row_data.get(float, conc_col), + ) + # For µM, we don't have a TQuantityValue type, skip for now + if concentration: + analyte_info[f"Analyte {analyte_num} Concentration"] = concentration + break + + # Add Molecular weight field + mw_col = f"Analyte {analyte_num} Molecular weight (Da)" + if mw_col in columns_set: + analyte_info[f"Analyte {analyte_num} Molecular weight"] = quantity_or_none( + TQuantityValueDalton, + first_row_data.get(float, mw_col), + ) + + return analyte_info + + +def _get_regeneration_custom_info( + first_row_data: SeriesData, channel_data: pd.DataFrame +) -> dict[str, Any | None]: + """ + Dynamically extract all Regeneration columns (Regeneration 1-N) that exist in the data. + + Args: + first_row_data: SeriesData from first row of channel data + channel_data: DataFrame with channel data + + Returns: + Dictionary with all available Regeneration fields + """ + regen_info: dict[str, Any | None] = {} + + # OPTIMIZATION: Get column set once for fast lookups + columns_set = set(channel_data.columns) + + # Check for Regeneration 1-10 (scan up to 10, typical max) + for regen_num in range(1, 11): + solution_col = f"Regeneration {regen_num} Solution" + + # Only process if this regeneration's solution column exists + if solution_col not in columns_set: + continue + + # Add Solution field + regen_info[solution_col] = first_row_data.get(str, solution_col) + + # Add other Regeneration fields if they exist + for field in ["Plate id", "Position", "Control type"]: + col_name = f"Regeneration {regen_num} {field}" + if col_name in columns_set: + regen_info[col_name] = first_row_data.get(str, col_name) + + return regen_info + + def _get_table_from_dataframe(df: pd.DataFrame, split_on: str) -> pd.DataFrame: data_table = drop_df_rows_while(df, lambda row: row[0] != split_on) return parse_header_row( @@ -341,9 +447,11 @@ def get_data( analyte_solution: str | None, ) -> KineticsData: empty = KineticsData() - if capture_solution is None or analyte_solution is None: + if analyte_solution is None: return empty - return self._data.get(f"{channel} {capture_solution} {analyte_solution}", empty) + # Handle cases where capture_solution might be None (treat as empty string) + capture_key = capture_solution if capture_solution is not None else "" + return self._data.get(f"{channel} {capture_key} {analyte_solution}", empty) class EvaluationConcentration: @@ -502,6 +610,98 @@ def create( run_info = SeriesData() if run_data.empty else df_to_series_data(run_data) # All the info needed in the device control document is the same for all flow cell data flow_cell_info = SeriesData(flow_cell_data.iloc[0]) + + # Build device control custom info with dynamic analyte and regeneration fields + device_control_custom_info_dict: dict[str, Any | None] = {} + columns_set = set(flow_cell_data.columns) + + # Dynamically add Analyte 1-N fields + for analyte_num in range(1, 11): + contact_time_col = f"Analyte {analyte_num} Contact time (s)" + if contact_time_col not in columns_set: + continue + + device_control_custom_info_dict[ + f"Analyte {analyte_num} Contact time" + ] = quantity_or_none( + TQuantityValueSecondTime, + flow_cell_info.get(float, contact_time_col), + ) + device_control_custom_info_dict[ + f"Analyte {analyte_num} Dissociation time" + ] = quantity_or_none( + TQuantityValueSecondTime, + flow_cell_info.get( + float, f"Analyte {analyte_num} Dissociation time (s)" + ), + ) + device_control_custom_info_dict[ + f"Analyte {analyte_num} Flow rate" + ] = quantity_or_none( + TQuantityValueMicroliterPerMinute, + flow_cell_info.get( + float, f"Analyte {analyte_num} Flow rate (µl/min)" + ), + ) + + # Dynamically add Regeneration 1-N fields + for regen_num in range(1, 11): + contact_time_col = f"Regeneration {regen_num} Contact time (s)" + if contact_time_col not in columns_set: + continue + + device_control_custom_info_dict[ + f"Regeneration {regen_num} Contact time" + ] = quantity_or_none( + TQuantityValueSecondTime, + flow_cell_info.get(float, contact_time_col), + ) + device_control_custom_info_dict[ + f"Regeneration {regen_num} Flow rate" + ] = quantity_or_none( + TQuantityValueMicroliterPerMinute, + flow_cell_info.get( + float, f"Regeneration {regen_num} Flow rate (µl/min)" + ), + ) + + # Dynamically add Capture 1-N fields + for capture_num in range(1, 6): + contact_time_col = f"Capture {capture_num} Contact time (s)" + if contact_time_col not in columns_set: + continue + + device_control_custom_info_dict[ + f"Capture {capture_num} Contact time" + ] = quantity_or_none( + TQuantityValueSecondTime, + flow_cell_info.get(float, contact_time_col), + ) + device_control_custom_info_dict[ + f"Capture {capture_num} Flow rate" + ] = quantity_or_none( + TQuantityValueMicroliterPerMinute, + flow_cell_info.get( + float, f"Capture {capture_num} Flow rate (µl/min)" + ), + ) + + # Add other standard fields + device_control_custom_info_dict.update( + { + "Included": run_info.get(str, "Included"), + "Sensorgram type": flow_cell_info.get( + str, + "Sensorgram type", + run_info.get(str, "Sensorgram type"), + ), + "Level": quantity_or_none( + TQuantityValueResponseUnit, + run_info.get(float, "Level (RU)"), + ), + } + ) + device_control_document.append( DeviceControlDocument( device_type=constants.DEVICE_TYPE, @@ -510,46 +710,7 @@ def create( float, "Temperature (°C)" ), device_control_custom_info=_clean_custom_info( - { - "Analyte 1 Contact time": quantity_or_none( - TQuantityValueSecondTime, - flow_cell_info.get(float, "Analyte 1 Contact time (s)"), - ), - "Analyte 1 Dissociation time": quantity_or_none( - TQuantityValueSecondTime, - flow_cell_info.get( - float, "Analyte 1 Dissociation time (s)" - ), - ), - "Analyte 1 Flow rate": quantity_or_none( - TQuantityValueMicroliterPerMinute, - flow_cell_info.get( - float, "Analyte 1 Flow rate (µl/min)" - ), - ), - "Regeneration 1 Contact time": quantity_or_none( - TQuantityValueSecondTime, - flow_cell_info.get( - float, "Regeneration 1 Contact time (s)" - ), - ), - "Regeneration 1 Flow rate": quantity_or_none( - TQuantityValueMicroliterPerMinute, - flow_cell_info.get( - float, "Regeneration 1 Flow rate (µl/min)" - ), - ), - "Included": run_info.get(str, "Included"), - "Sensorgram type": flow_cell_info.get( - str, - "Sensorgram type", - run_info.get(str, "Sensorgram type"), - ), - "Level": quantity_or_none( - TQuantityValueResponseUnit, - run_info.get(float, "Level (RU)"), - ), - } + device_control_custom_info_dict ), ) ) @@ -584,48 +745,17 @@ def create( "Run": run, "Cycle": cycle_number, "Channel": channel, - "Analyte 1 Solution": analyte_solution, - "Analyte 1 Plate id": first_row_data.get(str, "Analyte 1 Plate id"), - "Analyte 1 Position": first_row_data.get(str, "Analyte 1 Position"), - "Analyte 1 Control type": first_row_data.get( - str, "Analyte 1 Control type" - ), - "Regeneration 1 Solution": first_row_data.get( - str, "Regeneration 1 Solution" - ), - "Regeneration 1 Plate id": first_row_data.get( - str, "Regeneration 1 Plate id" - ), - "Regeneration 1 Position": first_row_data.get( - str, "Regeneration 1 Position" - ), - "Regeneration 1 Control type": first_row_data.get( - str, "Regeneration 1 Control type" - ), # Capture data may not be present in all file formats # Dynamically add all Capture columns that exist (Capture 1-5) **_get_capture_custom_info(channel_data, capture_solution), - "Analyte 1 Concentration": ( - # Try nM first, then µg/ml - quantity_or_none( - TQuantityValueNanomolar, - first_row_data.get(float, "Analyte 1 Concentration (nM)"), - ) - or quantity_or_none( - TQuantityValueMicrogramPerMilliliter, - first_row_data.get( - float, "Analyte 1 Concentration (µg/ml)" - ), - ) - ), + # Dynamically add all Analyte columns that exist (Analyte 1-N) + **_get_analyte_custom_info(first_row_data, channel_data), "Analyte 1 Calculated Concentration": quantity_or_none( TQuantityValueMicrogramPerMilliliter, calculated_concentration, ), - "Analyte 1 Molecular weight": quantity_or_none( - TQuantityValueDalton, - first_row_data.get(float, "Analyte 1 Molecular weight (Da)"), - ), + # Dynamically add all Regeneration columns that exist (Regeneration 1-N) + **_get_regeneration_custom_info(first_row_data, channel_data), } ), kinetics=evaluation_kinetics.get_data( diff --git a/tests/parsers/cytiva_biacore_insight/testdata/Affinity.json b/tests/parsers/cytiva_biacore_insight/testdata/Affinity.json index ff8f21bc1..70b0d5f16 100644 --- a/tests/parsers/cytiva_biacore_insight/testdata/Affinity.json +++ b/tests/parsers/cytiva_biacore_insight/testdata/Affinity.json @@ -322,6 +322,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 10.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -339,6 +347,10 @@ "Run": 1, "Cycle": 1, "Channel": "2", + "Capture 1 Solution": "Buffer", + "Capture 1 Plate id": "Rack 1", + "Capture 1 Position": "D1", + "Capture 1 Control type": "Not a control", "Analyte 1 Solution": "Buffer", "Analyte 1 Plate id": "Rack 1", "Analyte 1 Position": "A12", @@ -346,11 +358,7 @@ "Regeneration 1 Solution": "Gly pH 1.5", "Regeneration 1 Plate id": "Rack 1", "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", - "Capture 1 Solution": "Buffer", - "Capture 1 Plate id": "Rack 1", - "Capture 1 Position": "D1", - "Capture 1 Control type": "Not a control" + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -664,6 +672,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 10.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -676,6 +692,10 @@ "Run": 1, "Cycle": 1, "Channel": "2-1", + "Capture 1 Solution": "Buffer", + "Capture 1 Plate id": "Rack 1", + "Capture 1 Position": "D1", + "Capture 1 Control type": "Not a control", "Analyte 1 Solution": "Buffer", "Analyte 1 Plate id": "Rack 1", "Analyte 1 Position": "A12", @@ -683,11 +703,7 @@ "Regeneration 1 Solution": "Gly pH 1.5", "Regeneration 1 Plate id": "Rack 1", "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", - "Capture 1 Solution": "Buffer", - "Capture 1 Plate id": "Rack 1", - "Capture 1 Position": "D1", - "Capture 1 Control type": "Not a control" + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -1000,6 +1016,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 2 Contact time": { + "value": 10.0, + "unit": "s" + }, + "Capture 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -1017,6 +1041,10 @@ "Run": 1, "Cycle": 1, "Channel": "3", + "Capture 2 Solution": "Buffer", + "Capture 2 Plate id": "Rack 1", + "Capture 2 Position": "D1", + "Capture 2 Control type": "Not a control", "Analyte 1 Solution": "Buffer", "Analyte 1 Plate id": "Rack 1", "Analyte 1 Position": "A12", @@ -1024,11 +1052,7 @@ "Regeneration 1 Solution": "Gly pH 1.5", "Regeneration 1 Plate id": "Rack 1", "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", - "Capture 2 Solution": "Buffer", - "Capture 2 Plate id": "Rack 1", - "Capture 2 Position": "D1", - "Capture 2 Control type": "Not a control" + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -1342,6 +1366,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 2 Contact time": { + "value": 10.0, + "unit": "s" + }, + "Capture 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -1354,6 +1386,10 @@ "Run": 1, "Cycle": 1, "Channel": "3-1", + "Capture 2 Solution": "Buffer", + "Capture 2 Plate id": "Rack 1", + "Capture 2 Position": "D1", + "Capture 2 Control type": "Not a control", "Analyte 1 Solution": "Buffer", "Analyte 1 Plate id": "Rack 1", "Analyte 1 Position": "A12", @@ -1361,11 +1397,7 @@ "Regeneration 1 Solution": "Gly pH 1.5", "Regeneration 1 Plate id": "Rack 1", "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", - "Capture 2 Solution": "Buffer", - "Capture 2 Plate id": "Rack 1", - "Capture 2 Position": "D1", - "Capture 2 Control type": "Not a control" + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -1678,6 +1710,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 3 Contact time": { + "value": 10.0, + "unit": "s" + }, + "Capture 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -1695,6 +1735,10 @@ "Run": 1, "Cycle": 1, "Channel": "4", + "Capture 3 Solution": "Buffer", + "Capture 3 Plate id": "Rack 1", + "Capture 3 Position": "D1", + "Capture 3 Control type": "Not a control", "Analyte 1 Solution": "Buffer", "Analyte 1 Plate id": "Rack 1", "Analyte 1 Position": "A12", @@ -1702,11 +1746,7 @@ "Regeneration 1 Solution": "Gly pH 1.5", "Regeneration 1 Plate id": "Rack 1", "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", - "Capture 3 Solution": "Buffer", - "Capture 3 Plate id": "Rack 1", - "Capture 3 Position": "D1", - "Capture 3 Control type": "Not a control" + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -2020,6 +2060,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 3 Contact time": { + "value": 10.0, + "unit": "s" + }, + "Capture 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -2032,6 +2080,10 @@ "Run": 1, "Cycle": 1, "Channel": "4-1", + "Capture 3 Solution": "Buffer", + "Capture 3 Plate id": "Rack 1", + "Capture 3 Position": "D1", + "Capture 3 Control type": "Not a control", "Analyte 1 Solution": "Buffer", "Analyte 1 Plate id": "Rack 1", "Analyte 1 Position": "A12", @@ -2039,11 +2091,7 @@ "Regeneration 1 Solution": "Gly pH 1.5", "Regeneration 1 Plate id": "Rack 1", "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", - "Capture 3 Solution": "Buffer", - "Capture 3 Plate id": "Rack 1", - "Capture 3 Position": "D1", - "Capture 3 Control type": "Not a control" + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -2356,6 +2404,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 4 Contact time": { + "value": 10.0, + "unit": "s" + }, + "Capture 4 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -2373,6 +2429,10 @@ "Run": 1, "Cycle": 1, "Channel": "5", + "Capture 4 Solution": "Buffer", + "Capture 4 Plate id": "Rack 1", + "Capture 4 Position": "D1", + "Capture 4 Control type": "Not a control", "Analyte 1 Solution": "Buffer", "Analyte 1 Plate id": "Rack 1", "Analyte 1 Position": "A12", @@ -2380,11 +2440,7 @@ "Regeneration 1 Solution": "Gly pH 1.5", "Regeneration 1 Plate id": "Rack 1", "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", - "Capture 4 Solution": "Buffer", - "Capture 4 Plate id": "Rack 1", - "Capture 4 Position": "D1", - "Capture 4 Control type": "Not a control" + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -2698,6 +2754,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 4 Contact time": { + "value": 10.0, + "unit": "s" + }, + "Capture 4 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -2710,6 +2774,10 @@ "Run": 1, "Cycle": 1, "Channel": "5-1", + "Capture 4 Solution": "Buffer", + "Capture 4 Plate id": "Rack 1", + "Capture 4 Position": "D1", + "Capture 4 Control type": "Not a control", "Analyte 1 Solution": "Buffer", "Analyte 1 Plate id": "Rack 1", "Analyte 1 Position": "A12", @@ -2717,11 +2785,7 @@ "Regeneration 1 Solution": "Gly pH 1.5", "Regeneration 1 Plate id": "Rack 1", "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", - "Capture 4 Solution": "Buffer", - "Capture 4 Plate id": "Rack 1", - "Capture 4 Position": "D1", - "Capture 4 Control type": "Not a control" + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -3034,6 +3098,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 5 Contact time": { + "value": 10.0, + "unit": "s" + }, + "Capture 5 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -3051,6 +3123,10 @@ "Run": 1, "Cycle": 1, "Channel": "6", + "Capture 5 Solution": "Buffer", + "Capture 5 Plate id": "Rack 1", + "Capture 5 Position": "D1", + "Capture 5 Control type": "Not a control", "Analyte 1 Solution": "Buffer", "Analyte 1 Plate id": "Rack 1", "Analyte 1 Position": "A12", @@ -3058,11 +3134,7 @@ "Regeneration 1 Solution": "Gly pH 1.5", "Regeneration 1 Plate id": "Rack 1", "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", - "Capture 5 Solution": "Buffer", - "Capture 5 Plate id": "Rack 1", - "Capture 5 Position": "D1", - "Capture 5 Control type": "Not a control" + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -3376,6 +3448,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 5 Contact time": { + "value": 10.0, + "unit": "s" + }, + "Capture 5 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -3388,6 +3468,10 @@ "Run": 1, "Cycle": 1, "Channel": "6-1", + "Capture 5 Solution": "Buffer", + "Capture 5 Plate id": "Rack 1", + "Capture 5 Position": "D1", + "Capture 5 Control type": "Not a control", "Analyte 1 Solution": "Buffer", "Analyte 1 Plate id": "Rack 1", "Analyte 1 Position": "A12", @@ -3395,11 +3479,7 @@ "Regeneration 1 Solution": "Gly pH 1.5", "Regeneration 1 Plate id": "Rack 1", "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", - "Capture 5 Solution": "Buffer", - "Capture 5 Plate id": "Rack 1", - "Capture 5 Position": "D1", - "Capture 5 Control type": "Not a control" + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -3758,14 +3838,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A10", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -4027,6 +4107,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -4044,22 +4132,22 @@ "Run": 1, "Cycle": 2, "Channel": "2", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A10", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "S1", "Capture 1 Plate id": "Rack 1", "Capture 1 Position": "D2", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A10", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -4373,6 +4461,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -4385,22 +4481,22 @@ "Run": 1, "Cycle": 2, "Channel": "2-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A10", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "S1", "Capture 1 Plate id": "Rack 1", "Capture 1 Position": "D2", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A10", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -4734,6 +4830,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 2 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -4751,22 +4855,22 @@ "Run": 1, "Cycle": 2, "Channel": "3", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A10", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 2 Solution": "S2", "Capture 2 Plate id": "Rack 1", "Capture 2 Position": "D3", "Capture 2 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A10", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -5080,6 +5184,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 2 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -5092,22 +5204,22 @@ "Run": 1, "Cycle": 2, "Channel": "3-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A10", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 2 Solution": "S2", "Capture 2 Plate id": "Rack 1", "Capture 2 Position": "D3", "Capture 2 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A10", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -5420,6 +5532,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 3 Contact time": { + "value": 15.0, + "unit": "s" + }, + "Capture 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -5437,22 +5557,22 @@ "Run": 1, "Cycle": 2, "Channel": "4", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A10", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 3 Solution": "S3", "Capture 3 Plate id": "Rack 1", "Capture 3 Position": "D4", "Capture 3 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A10", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -5766,6 +5886,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 3 Contact time": { + "value": 15.0, + "unit": "s" + }, + "Capture 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -5778,22 +5906,22 @@ "Run": 1, "Cycle": 2, "Channel": "4-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A10", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 3 Solution": "S3", "Capture 3 Plate id": "Rack 1", "Capture 3 Position": "D4", "Capture 3 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A10", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -6106,6 +6234,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 4 Contact time": { + "value": 22.0, + "unit": "s" + }, + "Capture 4 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -6123,22 +6259,22 @@ "Run": 1, "Cycle": 2, "Channel": "5", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A10", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 4 Solution": "S4", "Capture 4 Plate id": "Rack 1", "Capture 4 Position": "D5", "Capture 4 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A10", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -6452,6 +6588,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 4 Contact time": { + "value": 22.0, + "unit": "s" + }, + "Capture 4 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -6464,22 +6608,22 @@ "Run": 1, "Cycle": 2, "Channel": "5-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A10", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 4 Solution": "S4", "Capture 4 Plate id": "Rack 1", "Capture 4 Position": "D5", "Capture 4 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A10", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -6792,6 +6936,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 5 Contact time": { + "value": 23.0, + "unit": "s" + }, + "Capture 5 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -6809,22 +6961,22 @@ "Run": 1, "Cycle": 2, "Channel": "6", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A10", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 5 Solution": "S5", "Capture 5 Plate id": "Rack 1", "Capture 5 Position": "D6", "Capture 5 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A10", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -7138,6 +7290,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 5 Contact time": { + "value": 23.0, + "unit": "s" + }, + "Capture 5 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -7150,22 +7310,22 @@ "Run": 1, "Cycle": 2, "Channel": "6-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A10", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 5 Solution": "S5", "Capture 5 Plate id": "Rack 1", "Capture 5 Position": "D6", "Capture 5 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A10", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -7524,14 +7684,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A9", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 39.0625, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -7793,6 +7953,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -7810,22 +7978,22 @@ "Run": 1, "Cycle": 3, "Channel": "2", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A9", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "S1", "Capture 1 Plate id": "Rack 1", "Capture 1 Position": "D2", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A9", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 39.0625, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -8139,6 +8307,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -8151,22 +8327,22 @@ "Run": 1, "Cycle": 3, "Channel": "2-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A9", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "S1", "Capture 1 Plate id": "Rack 1", "Capture 1 Position": "D2", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A9", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 39.0625, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -8500,6 +8676,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 2 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -8517,22 +8701,22 @@ "Run": 1, "Cycle": 3, "Channel": "3", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A9", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 2 Solution": "S2", "Capture 2 Plate id": "Rack 1", "Capture 2 Position": "D3", "Capture 2 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A9", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 39.0625, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -8846,6 +9030,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 2 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -8858,22 +9050,22 @@ "Run": 1, "Cycle": 3, "Channel": "3-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A9", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 2 Solution": "S2", "Capture 2 Plate id": "Rack 1", "Capture 2 Position": "D3", "Capture 2 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A9", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 39.0625, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -9186,6 +9378,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 3 Contact time": { + "value": 15.0, + "unit": "s" + }, + "Capture 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -9203,22 +9403,22 @@ "Run": 1, "Cycle": 3, "Channel": "4", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A9", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 3 Solution": "S3", "Capture 3 Plate id": "Rack 1", "Capture 3 Position": "D4", "Capture 3 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A9", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 39.0625, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -9532,6 +9732,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 3 Contact time": { + "value": 15.0, + "unit": "s" + }, + "Capture 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -9544,22 +9752,22 @@ "Run": 1, "Cycle": 3, "Channel": "4-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A9", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 3 Solution": "S3", "Capture 3 Plate id": "Rack 1", "Capture 3 Position": "D4", "Capture 3 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A9", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 39.0625, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -9872,6 +10080,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 4 Contact time": { + "value": 22.0, + "unit": "s" + }, + "Capture 4 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -9889,22 +10105,22 @@ "Run": 1, "Cycle": 3, "Channel": "5", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A9", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 4 Solution": "S4", "Capture 4 Plate id": "Rack 1", "Capture 4 Position": "D5", "Capture 4 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A9", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 39.0625, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -10218,6 +10434,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 4 Contact time": { + "value": 22.0, + "unit": "s" + }, + "Capture 4 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -10230,22 +10454,22 @@ "Run": 1, "Cycle": 3, "Channel": "5-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A9", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 4 Solution": "S4", "Capture 4 Plate id": "Rack 1", "Capture 4 Position": "D5", "Capture 4 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A9", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 39.0625, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -10558,6 +10782,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 5 Contact time": { + "value": 23.0, + "unit": "s" + }, + "Capture 5 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -10575,22 +10807,22 @@ "Run": 1, "Cycle": 3, "Channel": "6", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A9", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 5 Solution": "S5", "Capture 5 Plate id": "Rack 1", "Capture 5 Position": "D6", "Capture 5 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A9", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 39.0625, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -10904,6 +11136,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 5 Contact time": { + "value": 23.0, + "unit": "s" + }, + "Capture 5 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -10916,22 +11156,22 @@ "Run": 1, "Cycle": 3, "Channel": "6-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A9", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 5 Solution": "S5", "Capture 5 Plate id": "Rack 1", "Capture 5 Position": "D6", "Capture 5 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A9", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 39.0625, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -11290,14 +11530,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A8", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 78.125, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -11559,6 +11799,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -11576,22 +11824,22 @@ "Run": 1, "Cycle": 4, "Channel": "2", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A8", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "S1", "Capture 1 Plate id": "Rack 1", "Capture 1 Position": "D2", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A8", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 78.125, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -11905,6 +12153,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -11917,22 +12173,22 @@ "Run": 1, "Cycle": 4, "Channel": "2-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A8", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "S1", "Capture 1 Plate id": "Rack 1", "Capture 1 Position": "D2", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A8", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 78.125, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -12266,6 +12522,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 2 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -12283,22 +12547,22 @@ "Run": 1, "Cycle": 4, "Channel": "3", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A8", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 2 Solution": "S2", "Capture 2 Plate id": "Rack 1", "Capture 2 Position": "D3", "Capture 2 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A8", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 78.125, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -12612,6 +12876,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 2 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -12624,22 +12896,22 @@ "Run": 1, "Cycle": 4, "Channel": "3-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A8", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 2 Solution": "S2", "Capture 2 Plate id": "Rack 1", "Capture 2 Position": "D3", "Capture 2 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A8", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 78.125, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -12952,6 +13224,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 3 Contact time": { + "value": 15.0, + "unit": "s" + }, + "Capture 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -12969,22 +13249,22 @@ "Run": 1, "Cycle": 4, "Channel": "4", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A8", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 3 Solution": "S3", "Capture 3 Plate id": "Rack 1", "Capture 3 Position": "D4", "Capture 3 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A8", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 78.125, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -13298,6 +13578,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 3 Contact time": { + "value": 15.0, + "unit": "s" + }, + "Capture 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -13310,22 +13598,22 @@ "Run": 1, "Cycle": 4, "Channel": "4-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A8", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 3 Solution": "S3", "Capture 3 Plate id": "Rack 1", "Capture 3 Position": "D4", "Capture 3 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A8", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 78.125, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -13638,6 +13926,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 4 Contact time": { + "value": 22.0, + "unit": "s" + }, + "Capture 4 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -13655,22 +13951,22 @@ "Run": 1, "Cycle": 4, "Channel": "5", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A8", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 4 Solution": "S4", "Capture 4 Plate id": "Rack 1", "Capture 4 Position": "D5", "Capture 4 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A8", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 78.125, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -13984,6 +14280,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 4 Contact time": { + "value": 22.0, + "unit": "s" + }, + "Capture 4 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -13996,22 +14300,22 @@ "Run": 1, "Cycle": 4, "Channel": "5-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A8", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 4 Solution": "S4", "Capture 4 Plate id": "Rack 1", "Capture 4 Position": "D5", "Capture 4 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A8", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 78.125, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -14324,6 +14628,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 5 Contact time": { + "value": 23.0, + "unit": "s" + }, + "Capture 5 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -14341,22 +14653,22 @@ "Run": 1, "Cycle": 4, "Channel": "6", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A8", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 5 Solution": "S5", "Capture 5 Plate id": "Rack 1", "Capture 5 Position": "D6", "Capture 5 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A8", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 78.125, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -14670,6 +14982,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 5 Contact time": { + "value": 23.0, + "unit": "s" + }, + "Capture 5 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -14682,22 +15002,22 @@ "Run": 1, "Cycle": 4, "Channel": "6-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A8", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 5 Solution": "S5", "Capture 5 Plate id": "Rack 1", "Capture 5 Position": "D6", "Capture 5 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A8", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 78.125, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -15056,14 +15376,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A7", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 156.25, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -15325,6 +15645,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -15342,22 +15670,22 @@ "Run": 1, "Cycle": 5, "Channel": "2", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A7", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "S1", "Capture 1 Plate id": "Rack 1", "Capture 1 Position": "D2", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A7", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 156.25, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -15671,6 +15999,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -15683,22 +16019,22 @@ "Run": 1, "Cycle": 5, "Channel": "2-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A7", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "S1", "Capture 1 Plate id": "Rack 1", "Capture 1 Position": "D2", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A7", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 156.25, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -16032,6 +16368,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 2 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -16049,22 +16393,22 @@ "Run": 1, "Cycle": 5, "Channel": "3", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A7", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 2 Solution": "S2", "Capture 2 Plate id": "Rack 1", "Capture 2 Position": "D3", "Capture 2 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A7", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 156.25, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -16378,6 +16722,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 2 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -16390,22 +16742,22 @@ "Run": 1, "Cycle": 5, "Channel": "3-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A7", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 2 Solution": "S2", "Capture 2 Plate id": "Rack 1", "Capture 2 Position": "D3", "Capture 2 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A7", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 156.25, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -16718,6 +17070,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 3 Contact time": { + "value": 15.0, + "unit": "s" + }, + "Capture 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -16735,22 +17095,22 @@ "Run": 1, "Cycle": 5, "Channel": "4", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A7", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 3 Solution": "S3", "Capture 3 Plate id": "Rack 1", "Capture 3 Position": "D4", "Capture 3 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A7", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 156.25, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -17064,6 +17424,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 3 Contact time": { + "value": 15.0, + "unit": "s" + }, + "Capture 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -17076,22 +17444,22 @@ "Run": 1, "Cycle": 5, "Channel": "4-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A7", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 3 Solution": "S3", "Capture 3 Plate id": "Rack 1", "Capture 3 Position": "D4", "Capture 3 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A7", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 156.25, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -17404,6 +17772,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 4 Contact time": { + "value": 22.0, + "unit": "s" + }, + "Capture 4 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -17421,22 +17797,22 @@ "Run": 1, "Cycle": 5, "Channel": "5", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A7", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 4 Solution": "S4", "Capture 4 Plate id": "Rack 1", "Capture 4 Position": "D5", "Capture 4 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A7", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 156.25, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -17750,6 +18126,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 4 Contact time": { + "value": 22.0, + "unit": "s" + }, + "Capture 4 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -17762,22 +18146,22 @@ "Run": 1, "Cycle": 5, "Channel": "5-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A7", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 4 Solution": "S4", "Capture 4 Plate id": "Rack 1", "Capture 4 Position": "D5", "Capture 4 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A7", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 156.25, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -18090,6 +18474,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 5 Contact time": { + "value": 23.0, + "unit": "s" + }, + "Capture 5 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -18107,22 +18499,22 @@ "Run": 1, "Cycle": 5, "Channel": "6", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A7", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 5 Solution": "S5", "Capture 5 Plate id": "Rack 1", "Capture 5 Position": "D6", "Capture 5 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A7", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 156.25, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -18436,6 +18828,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 5 Contact time": { + "value": 23.0, + "unit": "s" + }, + "Capture 5 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -18448,22 +18848,22 @@ "Run": 1, "Cycle": 5, "Channel": "6-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A7", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 5 Solution": "S5", "Capture 5 Plate id": "Rack 1", "Capture 5 Position": "D6", "Capture 5 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A7", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 156.25, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -18822,14 +19222,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A6", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 312.5, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -19091,6 +19491,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -19108,22 +19516,22 @@ "Run": 1, "Cycle": 6, "Channel": "2", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A6", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "S1", "Capture 1 Plate id": "Rack 1", "Capture 1 Position": "D2", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A6", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 312.5, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -19437,6 +19845,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -19449,22 +19865,22 @@ "Run": 1, "Cycle": 6, "Channel": "2-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A6", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "S1", "Capture 1 Plate id": "Rack 1", "Capture 1 Position": "D2", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A6", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 312.5, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -19798,6 +20214,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 2 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -19815,22 +20239,22 @@ "Run": 1, "Cycle": 6, "Channel": "3", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A6", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 2 Solution": "S2", "Capture 2 Plate id": "Rack 1", "Capture 2 Position": "D3", "Capture 2 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A6", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 312.5, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -20144,6 +20568,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 2 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -20156,22 +20588,22 @@ "Run": 1, "Cycle": 6, "Channel": "3-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A6", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 2 Solution": "S2", "Capture 2 Plate id": "Rack 1", "Capture 2 Position": "D3", "Capture 2 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A6", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 312.5, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -20484,6 +20916,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 3 Contact time": { + "value": 15.0, + "unit": "s" + }, + "Capture 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -20501,22 +20941,22 @@ "Run": 1, "Cycle": 6, "Channel": "4", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A6", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 3 Solution": "S3", "Capture 3 Plate id": "Rack 1", "Capture 3 Position": "D4", "Capture 3 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A6", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 312.5, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -20830,6 +21270,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 3 Contact time": { + "value": 15.0, + "unit": "s" + }, + "Capture 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -20842,22 +21290,22 @@ "Run": 1, "Cycle": 6, "Channel": "4-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A6", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 3 Solution": "S3", "Capture 3 Plate id": "Rack 1", "Capture 3 Position": "D4", "Capture 3 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A6", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 312.5, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -21170,6 +21618,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 4 Contact time": { + "value": 22.0, + "unit": "s" + }, + "Capture 4 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -21187,22 +21643,22 @@ "Run": 1, "Cycle": 6, "Channel": "5", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A6", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 4 Solution": "S4", "Capture 4 Plate id": "Rack 1", "Capture 4 Position": "D5", "Capture 4 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A6", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 312.5, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -21516,6 +21972,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 4 Contact time": { + "value": 22.0, + "unit": "s" + }, + "Capture 4 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -21528,22 +21992,22 @@ "Run": 1, "Cycle": 6, "Channel": "5-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A6", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 4 Solution": "S4", "Capture 4 Plate id": "Rack 1", "Capture 4 Position": "D5", "Capture 4 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A6", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 312.5, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -21856,6 +22320,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 5 Contact time": { + "value": 23.0, + "unit": "s" + }, + "Capture 5 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -21873,22 +22345,22 @@ "Run": 1, "Cycle": 6, "Channel": "6", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A6", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 5 Solution": "S5", "Capture 5 Plate id": "Rack 1", "Capture 5 Position": "D6", "Capture 5 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A6", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 312.5, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -22202,6 +22674,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 5 Contact time": { + "value": 23.0, + "unit": "s" + }, + "Capture 5 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -22214,22 +22694,22 @@ "Run": 1, "Cycle": 6, "Channel": "6-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A6", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 5 Solution": "S5", "Capture 5 Plate id": "Rack 1", "Capture 5 Position": "D6", "Capture 5 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A6", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 312.5, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -22588,14 +23068,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A5", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 625.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -22857,6 +23337,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -22874,22 +23362,22 @@ "Run": 1, "Cycle": 7, "Channel": "2", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A5", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "S1", "Capture 1 Plate id": "Rack 1", "Capture 1 Position": "D2", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A5", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 625.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -23203,6 +23691,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -23215,22 +23711,22 @@ "Run": 1, "Cycle": 7, "Channel": "2-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A5", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "S1", "Capture 1 Plate id": "Rack 1", "Capture 1 Position": "D2", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A5", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 625.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -23564,6 +24060,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 2 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -23581,22 +24085,22 @@ "Run": 1, "Cycle": 7, "Channel": "3", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A5", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 2 Solution": "S2", "Capture 2 Plate id": "Rack 1", "Capture 2 Position": "D3", "Capture 2 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A5", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 625.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -23910,6 +24414,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 2 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -23922,22 +24434,22 @@ "Run": 1, "Cycle": 7, "Channel": "3-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A5", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 2 Solution": "S2", "Capture 2 Plate id": "Rack 1", "Capture 2 Position": "D3", "Capture 2 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A5", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 625.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -24250,6 +24762,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 3 Contact time": { + "value": 15.0, + "unit": "s" + }, + "Capture 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -24267,22 +24787,22 @@ "Run": 1, "Cycle": 7, "Channel": "4", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A5", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 3 Solution": "S3", "Capture 3 Plate id": "Rack 1", "Capture 3 Position": "D4", "Capture 3 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A5", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 625.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -24596,6 +25116,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 3 Contact time": { + "value": 15.0, + "unit": "s" + }, + "Capture 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -24608,22 +25136,22 @@ "Run": 1, "Cycle": 7, "Channel": "4-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A5", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 3 Solution": "S3", "Capture 3 Plate id": "Rack 1", "Capture 3 Position": "D4", "Capture 3 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A5", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 625.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -24936,6 +25464,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 4 Contact time": { + "value": 22.0, + "unit": "s" + }, + "Capture 4 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -24953,22 +25489,22 @@ "Run": 1, "Cycle": 7, "Channel": "5", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A5", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 4 Solution": "S4", "Capture 4 Plate id": "Rack 1", "Capture 4 Position": "D5", "Capture 4 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A5", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 625.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -25282,6 +25818,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 4 Contact time": { + "value": 22.0, + "unit": "s" + }, + "Capture 4 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -25294,22 +25838,22 @@ "Run": 1, "Cycle": 7, "Channel": "5-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A5", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 4 Solution": "S4", "Capture 4 Plate id": "Rack 1", "Capture 4 Position": "D5", "Capture 4 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A5", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 625.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -25622,6 +26166,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 5 Contact time": { + "value": 23.0, + "unit": "s" + }, + "Capture 5 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -25639,22 +26191,22 @@ "Run": 1, "Cycle": 7, "Channel": "6", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A5", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 5 Solution": "S5", "Capture 5 Plate id": "Rack 1", "Capture 5 Position": "D6", "Capture 5 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A5", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 625.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -25968,6 +26520,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 5 Contact time": { + "value": 23.0, + "unit": "s" + }, + "Capture 5 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -25980,22 +26540,22 @@ "Run": 1, "Cycle": 7, "Channel": "6-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A5", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 5 Solution": "S5", "Capture 5 Plate id": "Rack 1", "Capture 5 Position": "D6", "Capture 5 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A5", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 625.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -26354,14 +26914,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A4", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 1250.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -26623,6 +27183,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -26640,22 +27208,22 @@ "Run": 1, "Cycle": 8, "Channel": "2", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A4", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "S1", "Capture 1 Plate id": "Rack 1", "Capture 1 Position": "D2", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A4", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 1250.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -26969,6 +27537,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -26981,22 +27557,22 @@ "Run": 1, "Cycle": 8, "Channel": "2-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A4", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "S1", "Capture 1 Plate id": "Rack 1", "Capture 1 Position": "D2", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A4", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 1250.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -27330,6 +27906,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 2 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -27347,22 +27931,22 @@ "Run": 1, "Cycle": 8, "Channel": "3", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A4", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 2 Solution": "S2", "Capture 2 Plate id": "Rack 1", "Capture 2 Position": "D3", "Capture 2 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A4", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 1250.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -27676,6 +28260,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 2 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -27688,22 +28280,22 @@ "Run": 1, "Cycle": 8, "Channel": "3-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A4", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 2 Solution": "S2", "Capture 2 Plate id": "Rack 1", "Capture 2 Position": "D3", "Capture 2 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A4", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 1250.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -28016,6 +28608,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 3 Contact time": { + "value": 15.0, + "unit": "s" + }, + "Capture 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -28033,22 +28633,22 @@ "Run": 1, "Cycle": 8, "Channel": "4", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A4", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 3 Solution": "S3", "Capture 3 Plate id": "Rack 1", "Capture 3 Position": "D4", "Capture 3 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A4", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 1250.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -28362,6 +28962,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 3 Contact time": { + "value": 15.0, + "unit": "s" + }, + "Capture 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -28374,22 +28982,22 @@ "Run": 1, "Cycle": 8, "Channel": "4-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A4", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 3 Solution": "S3", "Capture 3 Plate id": "Rack 1", "Capture 3 Position": "D4", "Capture 3 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A4", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 1250.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -28702,6 +29310,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 4 Contact time": { + "value": 22.0, + "unit": "s" + }, + "Capture 4 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -28719,22 +29335,22 @@ "Run": 1, "Cycle": 8, "Channel": "5", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A4", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 4 Solution": "S4", "Capture 4 Plate id": "Rack 1", "Capture 4 Position": "D5", "Capture 4 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A4", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 1250.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -29048,6 +29664,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 4 Contact time": { + "value": 22.0, + "unit": "s" + }, + "Capture 4 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -29060,22 +29684,22 @@ "Run": 1, "Cycle": 8, "Channel": "5-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A4", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 4 Solution": "S4", "Capture 4 Plate id": "Rack 1", "Capture 4 Position": "D5", "Capture 4 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A4", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 1250.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -29388,6 +30012,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 5 Contact time": { + "value": 23.0, + "unit": "s" + }, + "Capture 5 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -29405,22 +30037,22 @@ "Run": 1, "Cycle": 8, "Channel": "6", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A4", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 5 Solution": "S5", "Capture 5 Plate id": "Rack 1", "Capture 5 Position": "D6", "Capture 5 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A4", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 1250.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -29734,6 +30366,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 5 Contact time": { + "value": 23.0, + "unit": "s" + }, + "Capture 5 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -29746,22 +30386,22 @@ "Run": 1, "Cycle": 8, "Channel": "6-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A4", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 5 Solution": "S5", "Capture 5 Plate id": "Rack 1", "Capture 5 Position": "D6", "Capture 5 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A4", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 1250.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -30120,14 +30760,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A3", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 2500.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -30389,6 +31029,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -30406,22 +31054,22 @@ "Run": 1, "Cycle": 9, "Channel": "2", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A3", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "S1", "Capture 1 Plate id": "Rack 1", "Capture 1 Position": "D2", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A3", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 2500.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -30735,6 +31383,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -30747,22 +31403,22 @@ "Run": 1, "Cycle": 9, "Channel": "2-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A3", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "S1", "Capture 1 Plate id": "Rack 1", "Capture 1 Position": "D2", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A3", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 2500.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -31096,6 +31752,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 2 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -31113,22 +31777,22 @@ "Run": 1, "Cycle": 9, "Channel": "3", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A3", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 2 Solution": "S2", "Capture 2 Plate id": "Rack 1", "Capture 2 Position": "D3", "Capture 2 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A3", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 2500.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -31442,6 +32106,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 2 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -31454,22 +32126,22 @@ "Run": 1, "Cycle": 9, "Channel": "3-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A3", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 2 Solution": "S2", "Capture 2 Plate id": "Rack 1", "Capture 2 Position": "D3", "Capture 2 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A3", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 2500.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -31782,6 +32454,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 3 Contact time": { + "value": 15.0, + "unit": "s" + }, + "Capture 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -31799,22 +32479,22 @@ "Run": 1, "Cycle": 9, "Channel": "4", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A3", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 3 Solution": "S3", "Capture 3 Plate id": "Rack 1", "Capture 3 Position": "D4", "Capture 3 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A3", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 2500.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -32128,6 +32808,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 3 Contact time": { + "value": 15.0, + "unit": "s" + }, + "Capture 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -32140,22 +32828,22 @@ "Run": 1, "Cycle": 9, "Channel": "4-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A3", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 3 Solution": "S3", "Capture 3 Plate id": "Rack 1", "Capture 3 Position": "D4", "Capture 3 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A3", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 2500.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -32468,6 +33156,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 4 Contact time": { + "value": 22.0, + "unit": "s" + }, + "Capture 4 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -32485,22 +33181,22 @@ "Run": 1, "Cycle": 9, "Channel": "5", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A3", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 4 Solution": "S4", "Capture 4 Plate id": "Rack 1", "Capture 4 Position": "D5", "Capture 4 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A3", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 2500.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -32814,6 +33510,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 4 Contact time": { + "value": 22.0, + "unit": "s" + }, + "Capture 4 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -32826,22 +33530,22 @@ "Run": 1, "Cycle": 9, "Channel": "5-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A3", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 4 Solution": "S4", "Capture 4 Plate id": "Rack 1", "Capture 4 Position": "D5", "Capture 4 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A3", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 2500.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -33154,6 +33858,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 5 Contact time": { + "value": 23.0, + "unit": "s" + }, + "Capture 5 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -33171,22 +33883,22 @@ "Run": 1, "Cycle": 9, "Channel": "6", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A3", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 5 Solution": "S5", "Capture 5 Plate id": "Rack 1", "Capture 5 Position": "D6", "Capture 5 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A3", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 2500.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -33500,6 +34212,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 5 Contact time": { + "value": 23.0, + "unit": "s" + }, + "Capture 5 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -33512,22 +34232,22 @@ "Run": 1, "Cycle": 9, "Channel": "6-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A3", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 5 Solution": "S5", "Capture 5 Plate id": "Rack 1", "Capture 5 Position": "D6", "Capture 5 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A3", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 2500.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -33886,14 +34606,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A2", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 5000.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -34155,6 +34875,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -34172,22 +34900,22 @@ "Run": 1, "Cycle": 10, "Channel": "2", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A2", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "S1", "Capture 1 Plate id": "Rack 1", "Capture 1 Position": "D2", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A2", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 5000.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -34501,6 +35229,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -34513,22 +35249,22 @@ "Run": 1, "Cycle": 10, "Channel": "2-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A2", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "S1", "Capture 1 Plate id": "Rack 1", "Capture 1 Position": "D2", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A2", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 5000.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -34862,6 +35598,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 2 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -34879,22 +35623,22 @@ "Run": 1, "Cycle": 10, "Channel": "3", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A2", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 2 Solution": "S2", "Capture 2 Plate id": "Rack 1", "Capture 2 Position": "D3", "Capture 2 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A2", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 5000.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -35208,6 +35952,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 2 Contact time": { + "value": 20.0, + "unit": "s" + }, + "Capture 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -35220,22 +35972,22 @@ "Run": 1, "Cycle": 10, "Channel": "3-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A2", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 2 Solution": "S2", "Capture 2 Plate id": "Rack 1", "Capture 2 Position": "D3", "Capture 2 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A2", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 5000.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -35548,6 +36300,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 3 Contact time": { + "value": 15.0, + "unit": "s" + }, + "Capture 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -35565,22 +36325,22 @@ "Run": 1, "Cycle": 10, "Channel": "4", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A2", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 3 Solution": "S3", "Capture 3 Plate id": "Rack 1", "Capture 3 Position": "D4", "Capture 3 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A2", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 5000.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -35894,6 +36654,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 3 Contact time": { + "value": 15.0, + "unit": "s" + }, + "Capture 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -35906,22 +36674,22 @@ "Run": 1, "Cycle": 10, "Channel": "4-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A2", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 3 Solution": "S3", "Capture 3 Plate id": "Rack 1", "Capture 3 Position": "D4", "Capture 3 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A2", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 5000.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -36234,6 +37002,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 4 Contact time": { + "value": 22.0, + "unit": "s" + }, + "Capture 4 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -36251,22 +37027,22 @@ "Run": 1, "Cycle": 10, "Channel": "5", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A2", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 4 Solution": "S4", "Capture 4 Plate id": "Rack 1", "Capture 4 Position": "D5", "Capture 4 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A2", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 5000.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -36580,6 +37356,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 4 Contact time": { + "value": 22.0, + "unit": "s" + }, + "Capture 4 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -36592,22 +37376,22 @@ "Run": 1, "Cycle": 10, "Channel": "5-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A2", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 4 Solution": "S4", "Capture 4 Plate id": "Rack 1", "Capture 4 Position": "D5", "Capture 4 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A2", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 5000.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -36920,6 +37704,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 5 Contact time": { + "value": 23.0, + "unit": "s" + }, + "Capture 5 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -36937,22 +37729,22 @@ "Run": 1, "Cycle": 10, "Channel": "6", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A2", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 5 Solution": "S5", "Capture 5 Plate id": "Rack 1", "Capture 5 Position": "D6", "Capture 5 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A2", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 5000.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -37266,6 +38058,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 5 Contact time": { + "value": 23.0, + "unit": "s" + }, + "Capture 5 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -37278,22 +38078,22 @@ "Run": 1, "Cycle": 10, "Channel": "6-1", - "Analyte 1 Solution": "Analyte A", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A2", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Gly pH 1.5", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D7", - "Regeneration 1 Control type": "Not a control", "Capture 5 Solution": "S5", "Capture 5 Plate id": "Rack 1", "Capture 5 Position": "D6", "Capture 5 Control type": "Not a control", + "Analyte 1 Solution": "Analyte A", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A2", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 5000.0, "unit": "nM" - } + }, + "Regeneration 1 Solution": "Gly pH 1.5", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D7", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -94728,7 +95528,7 @@ "file name": "Experiment_Name", "UNC path": "Root\\", "ASM converter name": "allotropy_cytiva_biacore_insight", - "ASM converter version": "0.1.113", + "ASM converter version": "0.1.116", "software name": "Biacore Insight Evaluation", "software version": "6.0.7.1750" }, diff --git a/tests/parsers/cytiva_biacore_insight/testdata/Concentration Analysis.json b/tests/parsers/cytiva_biacore_insight/testdata/Concentration Analysis.json index 7a46b4cde..1ddc524a7 100644 --- a/tests/parsers/cytiva_biacore_insight/testdata/Concentration Analysis.json +++ b/tests/parsers/cytiva_biacore_insight/testdata/Concentration Analysis.json @@ -24,6 +24,22 @@ "value": 30.0, "unit": "µL/min" }, + "Regeneration 2 Contact time": { + "value": 60.0, + "unit": "s" + }, + "Regeneration 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, + "Regeneration 3 Contact time": { + "value": 60.0, + "unit": "s" + }, + "Regeneration 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Reference" } @@ -40,7 +56,15 @@ "Regeneration 1 Solution": "3M MgCl2", "Regeneration 1 Plate id": "Rack 1", "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control" + "Regeneration 1 Control type": "Not a control", + "Regeneration 2 Solution": "3M MgCl2", + "Regeneration 2 Plate id": "Rack 1", + "Regeneration 2 Position": "D1", + "Regeneration 2 Control type": "Not a control", + "Regeneration 3 Solution": "3M MgCl2", + "Regeneration 3 Plate id": "Rack 1", + "Regeneration 3 Position": "D1", + "Regeneration 3 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -226,6 +250,22 @@ "value": 30.0, "unit": "µL/min" }, + "Regeneration 2 Contact time": { + "value": 60.0, + "unit": "s" + }, + "Regeneration 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, + "Regeneration 3 Contact time": { + "value": 60.0, + "unit": "s" + }, + "Regeneration 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -246,7 +286,15 @@ "Regeneration 1 Solution": "3M MgCl2", "Regeneration 1 Plate id": "Rack 1", "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control" + "Regeneration 1 Control type": "Not a control", + "Regeneration 2 Solution": "3M MgCl2", + "Regeneration 2 Plate id": "Rack 1", + "Regeneration 2 Position": "D1", + "Regeneration 2 Control type": "Not a control", + "Regeneration 3 Solution": "3M MgCl2", + "Regeneration 3 Plate id": "Rack 1", + "Regeneration 3 Position": "D1", + "Regeneration 3 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -432,6 +480,22 @@ "value": 30.0, "unit": "µL/min" }, + "Regeneration 2 Contact time": { + "value": 60.0, + "unit": "s" + }, + "Regeneration 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, + "Regeneration 3 Contact time": { + "value": 60.0, + "unit": "s" + }, + "Regeneration 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -447,7 +511,15 @@ "Regeneration 1 Solution": "3M MgCl2", "Regeneration 1 Plate id": "Rack 1", "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control" + "Regeneration 1 Control type": "Not a control", + "Regeneration 2 Solution": "3M MgCl2", + "Regeneration 2 Plate id": "Rack 1", + "Regeneration 2 Position": "D1", + "Regeneration 2 Control type": "Not a control", + "Regeneration 3 Solution": "3M MgCl2", + "Regeneration 3 Plate id": "Rack 1", + "Regeneration 3 Position": "D1", + "Regeneration 3 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -632,6 +704,22 @@ "value": 30.0, "unit": "µL/min" }, + "Regeneration 2 Contact time": { + "value": 60.0, + "unit": "s" + }, + "Regeneration 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, + "Regeneration 3 Contact time": { + "value": 60.0, + "unit": "s" + }, + "Regeneration 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -652,7 +740,15 @@ "Regeneration 1 Solution": "3M MgCl2", "Regeneration 1 Plate id": "Rack 1", "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control" + "Regeneration 1 Control type": "Not a control", + "Regeneration 2 Solution": "3M MgCl2", + "Regeneration 2 Plate id": "Rack 1", + "Regeneration 2 Position": "D1", + "Regeneration 2 Control type": "Not a control", + "Regeneration 3 Solution": "3M MgCl2", + "Regeneration 3 Plate id": "Rack 1", + "Regeneration 3 Position": "D1", + "Regeneration 3 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -838,6 +934,22 @@ "value": 30.0, "unit": "µL/min" }, + "Regeneration 2 Contact time": { + "value": 60.0, + "unit": "s" + }, + "Regeneration 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, + "Regeneration 3 Contact time": { + "value": 60.0, + "unit": "s" + }, + "Regeneration 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -853,7 +965,15 @@ "Regeneration 1 Solution": "3M MgCl2", "Regeneration 1 Plate id": "Rack 1", "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control" + "Regeneration 1 Control type": "Not a control", + "Regeneration 2 Solution": "3M MgCl2", + "Regeneration 2 Plate id": "Rack 1", + "Regeneration 2 Position": "D1", + "Regeneration 2 Control type": "Not a control", + "Regeneration 3 Solution": "3M MgCl2", + "Regeneration 3 Plate id": "Rack 1", + "Regeneration 3 Position": "D1", + "Regeneration 3 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -1038,6 +1158,22 @@ "value": 30.0, "unit": "µL/min" }, + "Regeneration 2 Contact time": { + "value": 60.0, + "unit": "s" + }, + "Regeneration 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, + "Regeneration 3 Contact time": { + "value": 60.0, + "unit": "s" + }, + "Regeneration 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -1058,7 +1194,15 @@ "Regeneration 1 Solution": "3M MgCl2", "Regeneration 1 Plate id": "Rack 1", "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control" + "Regeneration 1 Control type": "Not a control", + "Regeneration 2 Solution": "3M MgCl2", + "Regeneration 2 Plate id": "Rack 1", + "Regeneration 2 Position": "D1", + "Regeneration 2 Control type": "Not a control", + "Regeneration 3 Solution": "3M MgCl2", + "Regeneration 3 Plate id": "Rack 1", + "Regeneration 3 Position": "D1", + "Regeneration 3 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -1244,6 +1388,22 @@ "value": 30.0, "unit": "µL/min" }, + "Regeneration 2 Contact time": { + "value": 60.0, + "unit": "s" + }, + "Regeneration 2 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, + "Regeneration 3 Contact time": { + "value": 60.0, + "unit": "s" + }, + "Regeneration 3 Flow rate": { + "value": 30.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -1259,7 +1419,15 @@ "Regeneration 1 Solution": "3M MgCl2", "Regeneration 1 Plate id": "Rack 1", "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control" + "Regeneration 1 Control type": "Not a control", + "Regeneration 2 Solution": "3M MgCl2", + "Regeneration 2 Plate id": "Rack 1", + "Regeneration 2 Position": "D1", + "Regeneration 2 Control type": "Not a control", + "Regeneration 3 Solution": "3M MgCl2", + "Regeneration 3 Plate id": "Rack 1", + "Regeneration 3 Position": "D1", + "Regeneration 3 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -6169,14 +6337,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A10", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -6419,14 +6587,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A10", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -6664,14 +6832,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A10", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -6913,14 +7081,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A10", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -7158,14 +7326,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A10", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -7407,14 +7575,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A10", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -7652,14 +7820,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A10", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -7922,14 +8090,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A10", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -8172,14 +8340,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A10", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -8417,14 +8585,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A10", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -8666,14 +8834,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A10", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -8911,14 +9079,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A10", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -9160,14 +9328,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A10", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -9405,14 +9573,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A10", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -9675,14 +9843,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A9", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.215, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -9925,10 +10093,6 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A9", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.215, "unit": "ug/mL" @@ -9936,10 +10100,14 @@ "Analyte 1 Calculated Concentration": { "value": 0.2221081, "unit": "ug/mL" - } - } - }, - "detection type": "Surface Plasmon Resonance", + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" + } + }, + "detection type": "Surface Plasmon Resonance", "processed data aggregate document": { "processed data document": [ { @@ -10174,10 +10342,6 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A9", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.215, "unit": "ug/mL" @@ -10185,7 +10349,11 @@ "Analyte 1 Calculated Concentration": { "value": 0.223146185, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -10427,14 +10595,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A9", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.215, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -10672,14 +10840,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A9", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.215, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -10921,14 +11089,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A9", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.215, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -11166,14 +11334,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A9", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.215, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -11436,14 +11604,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A9", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.215, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -11686,10 +11854,6 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A9", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.215, "unit": "ug/mL" @@ -11697,7 +11861,11 @@ "Analyte 1 Calculated Concentration": { "value": 0.22221145, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -11935,10 +12103,6 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A9", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.215, "unit": "ug/mL" @@ -11946,7 +12110,11 @@ "Analyte 1 Calculated Concentration": { "value": 0.223151684, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -12188,14 +12356,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A9", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.215, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -12433,14 +12601,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A9", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.215, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -12682,14 +12850,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A9", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.215, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -12927,14 +13095,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A9", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.215, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -13197,14 +13365,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A8", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.322, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -13447,10 +13615,6 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A8", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.322, "unit": "ug/mL" @@ -13458,7 +13622,11 @@ "Analyte 1 Calculated Concentration": { "value": 0.328146726, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -13696,10 +13864,6 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A8", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.322, "unit": "ug/mL" @@ -13707,7 +13871,11 @@ "Analyte 1 Calculated Concentration": { "value": 0.329638571, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -13949,14 +14117,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A8", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.322, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -14194,14 +14362,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A8", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.322, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -14443,14 +14611,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A8", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.322, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -14688,14 +14856,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A8", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.322, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -14958,14 +15126,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A8", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.322, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -15208,10 +15376,6 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A8", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.322, "unit": "ug/mL" @@ -15219,7 +15383,11 @@ "Analyte 1 Calculated Concentration": { "value": 0.327615142, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -15457,10 +15625,6 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A8", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.322, "unit": "ug/mL" @@ -15468,7 +15632,11 @@ "Analyte 1 Calculated Concentration": { "value": 0.330206424, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -15710,14 +15878,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A8", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.322, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -15955,14 +16123,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A8", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.322, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -16204,14 +16372,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A8", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.322, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -16449,14 +16617,14 @@ "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A8", "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "3M MgCl2", - "Regeneration 1 Plate id": "Rack 1", - "Regeneration 1 Position": "D1", - "Regeneration 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.322, "unit": "ug/mL" - } + }, + "Regeneration 1 Solution": "3M MgCl2", + "Regeneration 1 Plate id": "Rack 1", + "Regeneration 1 Position": "D1", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", diff --git a/tests/parsers/cytiva_biacore_insight/testdata/Cytiva_Biacore_Insight_Example01.json b/tests/parsers/cytiva_biacore_insight/testdata/Cytiva_Biacore_Insight_Example01.json index ae57ba09b..556c440b9 100644 --- a/tests/parsers/cytiva_biacore_insight/testdata/Cytiva_Biacore_Insight_Example01.json +++ b/tests/parsers/cytiva_biacore_insight/testdata/Cytiva_Biacore_Insight_Example01.json @@ -72,6 +72,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -108,6 +116,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -120,6 +136,10 @@ "Run": 1, "Cycle": 1, "Channel": 1, + "Capture 1 Solution": "Buffer", + "Capture 1 Plate id": "Plate 1", + "Capture 1 Position": "A6", + "Capture 1 Control type": "Blank control", "Analyte 1 Solution": "Buffer", "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "A7", @@ -127,11 +147,7 @@ "Regeneration 1 Solution": "Regeneration_Buffer", "Regeneration 1 Plate id": "Plate 1", "Regeneration 1 Position": "A12", - "Regeneration 1 Control type": "Not a control", - "Capture 1 Solution": "Buffer", - "Capture 1 Plate id": "Plate 1", - "Capture 1 Position": "A6", - "Capture 1 Control type": "Blank control" + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -955,6 +971,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -991,6 +1015,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -1003,6 +1035,10 @@ "Run": 1, "Cycle": 1, "Channel": 2, + "Capture 1 Solution": "Buffer", + "Capture 1 Plate id": "Plate 1", + "Capture 1 Position": "B6", + "Capture 1 Control type": "Blank control", "Analyte 1 Solution": "Buffer", "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "B7", @@ -1010,11 +1046,7 @@ "Regeneration 1 Solution": "Regeneration_Buffer", "Regeneration 1 Plate id": "Plate 1", "Regeneration 1 Position": "B12", - "Regeneration 1 Control type": "Not a control", - "Capture 1 Solution": "Buffer", - "Capture 1 Plate id": "Plate 1", - "Capture 1 Position": "B6", - "Capture 1 Control type": "Blank control" + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -1838,6 +1870,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -1874,6 +1914,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -1886,6 +1934,10 @@ "Run": 1, "Cycle": 1, "Channel": 3, + "Capture 1 Solution": "Buffer", + "Capture 1 Plate id": "Plate 1", + "Capture 1 Position": "C6", + "Capture 1 Control type": "Blank control", "Analyte 1 Solution": "Buffer", "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "C7", @@ -1893,11 +1945,7 @@ "Regeneration 1 Solution": "Regeneration_Buffer", "Regeneration 1 Plate id": "Plate 1", "Regeneration 1 Position": "C12", - "Regeneration 1 Control type": "Not a control", - "Capture 1 Solution": "Buffer", - "Capture 1 Plate id": "Plate 1", - "Capture 1 Position": "C6", - "Capture 1 Control type": "Blank control" + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -2721,6 +2769,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -2757,6 +2813,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -2769,6 +2833,10 @@ "Run": 1, "Cycle": 1, "Channel": 4, + "Capture 1 Solution": "Buffer", + "Capture 1 Plate id": "Plate 1", + "Capture 1 Position": "D6", + "Capture 1 Control type": "Blank control", "Analyte 1 Solution": "Buffer", "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "D7", @@ -2776,11 +2844,7 @@ "Regeneration 1 Solution": "Regeneration_Buffer", "Regeneration 1 Plate id": "Plate 1", "Regeneration 1 Position": "D12", - "Regeneration 1 Control type": "Not a control", - "Capture 1 Solution": "Buffer", - "Capture 1 Plate id": "Plate 1", - "Capture 1 Position": "D6", - "Capture 1 Control type": "Blank control" + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -3604,6 +3668,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -3640,6 +3712,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -3652,6 +3732,10 @@ "Run": 1, "Cycle": 1, "Channel": 5, + "Capture 1 Solution": "Buffer", + "Capture 1 Plate id": "Plate 1", + "Capture 1 Position": "E6", + "Capture 1 Control type": "Blank control", "Analyte 1 Solution": "Buffer", "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "E7", @@ -3659,11 +3743,7 @@ "Regeneration 1 Solution": "Regeneration_Buffer", "Regeneration 1 Plate id": "Plate 1", "Regeneration 1 Position": "E12", - "Regeneration 1 Control type": "Not a control", - "Capture 1 Solution": "Buffer", - "Capture 1 Plate id": "Plate 1", - "Capture 1 Position": "E6", - "Capture 1 Control type": "Blank control" + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -4487,6 +4567,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -4523,6 +4611,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -4535,6 +4631,10 @@ "Run": 1, "Cycle": 1, "Channel": 6, + "Capture 1 Solution": "Buffer", + "Capture 1 Plate id": "Plate 1", + "Capture 1 Position": "F6", + "Capture 1 Control type": "Blank control", "Analyte 1 Solution": "Buffer", "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "F7", @@ -4542,11 +4642,7 @@ "Regeneration 1 Solution": "Regeneration_Buffer", "Regeneration 1 Plate id": "Plate 1", "Regeneration 1 Position": "F12", - "Regeneration 1 Control type": "Not a control", - "Capture 1 Solution": "Buffer", - "Capture 1 Plate id": "Plate 1", - "Capture 1 Position": "F6", - "Capture 1 Control type": "Blank control" + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -5370,6 +5466,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -5406,6 +5510,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -5418,6 +5530,10 @@ "Run": 1, "Cycle": 1, "Channel": 7, + "Capture 1 Solution": "Buffer", + "Capture 1 Plate id": "Plate 1", + "Capture 1 Position": "G6", + "Capture 1 Control type": "Blank control", "Analyte 1 Solution": "Buffer", "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "G7", @@ -5425,11 +5541,7 @@ "Regeneration 1 Solution": "Regeneration_Buffer", "Regeneration 1 Plate id": "Plate 1", "Regeneration 1 Position": "G12", - "Regeneration 1 Control type": "Not a control", - "Capture 1 Solution": "Buffer", - "Capture 1 Plate id": "Plate 1", - "Capture 1 Position": "G6", - "Capture 1 Control type": "Blank control" + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -6253,6 +6365,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -6289,6 +6409,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -6301,6 +6429,10 @@ "Run": 1, "Cycle": 1, "Channel": 8, + "Capture 1 Solution": "Buffer", + "Capture 1 Plate id": "Plate 1", + "Capture 1 Position": "H6", + "Capture 1 Control type": "Blank control", "Analyte 1 Solution": "Buffer", "Analyte 1 Plate id": "Plate 1", "Analyte 1 Position": "H7", @@ -6308,11 +6440,7 @@ "Regeneration 1 Solution": "Regeneration_Buffer", "Regeneration 1 Plate id": "Plate 1", "Regeneration 1 Position": "H12", - "Regeneration 1 Control type": "Not a control", - "Capture 1 Solution": "Buffer", - "Capture 1 Plate id": "Plate 1", - "Capture 1 Position": "H6", - "Capture 1 Control type": "Blank control" + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -7161,6 +7289,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -7197,6 +7333,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -7209,18 +7353,14 @@ "Run": 1, "Cycle": 2, "Channel": 1, - "Analyte 1 Solution": "analyte2", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "A4", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Regeneration_Buffer", - "Regeneration 1 Plate id": "Plate 1", - "Regeneration 1 Position": "A12", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "capture1", "Capture 1 Plate id": "Plate 2", "Capture 1 Position": "A1", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "analyte2", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "A4", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "nM" @@ -7228,7 +7368,11 @@ "Analyte 1 Molecular weight": { "value": 44000.0, "unit": "Da" - } + }, + "Regeneration 1 Solution": "Regeneration_Buffer", + "Regeneration 1 Plate id": "Plate 1", + "Regeneration 1 Position": "A12", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -8079,6 +8223,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -8115,6 +8267,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -8127,18 +8287,14 @@ "Run": 1, "Cycle": 2, "Channel": 2, - "Analyte 1 Solution": "analyte2", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "B4", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Regeneration_Buffer", - "Regeneration 1 Plate id": "Plate 1", - "Regeneration 1 Position": "B12", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "capture2", "Capture 1 Plate id": "Plate 2", "Capture 1 Position": "B1", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "analyte2", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "B4", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "nM" @@ -8146,7 +8302,11 @@ "Analyte 1 Molecular weight": { "value": 44000.0, "unit": "Da" - } + }, + "Regeneration 1 Solution": "Regeneration_Buffer", + "Regeneration 1 Plate id": "Plate 1", + "Regeneration 1 Position": "B12", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -8997,6 +9157,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -9033,6 +9201,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -9045,18 +9221,14 @@ "Run": 1, "Cycle": 2, "Channel": 3, - "Analyte 1 Solution": "analyte2", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "C4", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Regeneration_Buffer", - "Regeneration 1 Plate id": "Plate 1", - "Regeneration 1 Position": "C12", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "capture3", "Capture 1 Plate id": "Plate 2", "Capture 1 Position": "C1", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "analyte2", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "C4", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "nM" @@ -9064,7 +9236,11 @@ "Analyte 1 Molecular weight": { "value": 44000.0, "unit": "Da" - } + }, + "Regeneration 1 Solution": "Regeneration_Buffer", + "Regeneration 1 Plate id": "Plate 1", + "Regeneration 1 Position": "C12", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -9915,6 +10091,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -9951,6 +10135,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -9963,18 +10155,14 @@ "Run": 1, "Cycle": 2, "Channel": 4, - "Analyte 1 Solution": "analyte2", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "D4", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Regeneration_Buffer", - "Regeneration 1 Plate id": "Plate 1", - "Regeneration 1 Position": "D12", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "capture5", "Capture 1 Plate id": "Plate 2", "Capture 1 Position": "D1", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "analyte2", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "D4", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "nM" @@ -9982,7 +10170,11 @@ "Analyte 1 Molecular weight": { "value": 44000.0, "unit": "Da" - } + }, + "Regeneration 1 Solution": "Regeneration_Buffer", + "Regeneration 1 Plate id": "Plate 1", + "Regeneration 1 Position": "D12", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -10833,6 +11025,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -10869,6 +11069,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -10881,18 +11089,14 @@ "Run": 1, "Cycle": 2, "Channel": 5, - "Analyte 1 Solution": "analyte2", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "E4", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Regeneration_Buffer", - "Regeneration 1 Plate id": "Plate 1", - "Regeneration 1 Position": "E12", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "capture6", "Capture 1 Plate id": "Plate 2", "Capture 1 Position": "E1", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "analyte2", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "E4", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "nM" @@ -10900,7 +11104,11 @@ "Analyte 1 Molecular weight": { "value": 44000.0, "unit": "Da" - } + }, + "Regeneration 1 Solution": "Regeneration_Buffer", + "Regeneration 1 Plate id": "Plate 1", + "Regeneration 1 Position": "E12", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -11751,6 +11959,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -11787,6 +12003,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -11799,18 +12023,14 @@ "Run": 1, "Cycle": 2, "Channel": 6, - "Analyte 1 Solution": "analyte2", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "F4", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Regeneration_Buffer", - "Regeneration 1 Plate id": "Plate 1", - "Regeneration 1 Position": "F12", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "capture7", "Capture 1 Plate id": "Plate 2", "Capture 1 Position": "F1", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "analyte2", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "F4", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "nM" @@ -11818,7 +12038,11 @@ "Analyte 1 Molecular weight": { "value": 44000.0, "unit": "Da" - } + }, + "Regeneration 1 Solution": "Regeneration_Buffer", + "Regeneration 1 Plate id": "Plate 1", + "Regeneration 1 Position": "F12", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -12643,6 +12867,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -12679,6 +12911,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -12691,18 +12931,14 @@ "Run": 1, "Cycle": 2, "Channel": 7, - "Analyte 1 Solution": "analyte2", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "G4", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Regeneration_Buffer", - "Regeneration 1 Plate id": "Plate 1", - "Regeneration 1 Position": "G12", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "capture9", "Capture 1 Plate id": "Plate 2", "Capture 1 Position": "G1", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "analyte2", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "G4", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "nM" @@ -12710,7 +12946,11 @@ "Analyte 1 Molecular weight": { "value": 44000.0, "unit": "Da" - } + }, + "Regeneration 1 Solution": "Regeneration_Buffer", + "Regeneration 1 Plate id": "Plate 1", + "Regeneration 1 Position": "G12", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -13561,6 +13801,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Included": "Yes", "Sensorgram type": "Active", "Level": { @@ -13597,6 +13845,14 @@ "value": 30.0, "unit": "µL/min" }, + "Capture 1 Contact time": { + "value": 200.0, + "unit": "s" + }, + "Capture 1 Flow rate": { + "value": 5.0, + "unit": "µL/min" + }, "Sensorgram type": "Reference subtracted" } } @@ -13609,18 +13865,14 @@ "Run": 1, "Cycle": 2, "Channel": 8, - "Analyte 1 Solution": "analyte2", - "Analyte 1 Plate id": "Plate 1", - "Analyte 1 Position": "H4", - "Analyte 1 Control type": "Not a control", - "Regeneration 1 Solution": "Regeneration_Buffer", - "Regeneration 1 Plate id": "Plate 1", - "Regeneration 1 Position": "H12", - "Regeneration 1 Control type": "Not a control", "Capture 1 Solution": "capture11", "Capture 1 Plate id": "Plate 2", "Capture 1 Position": "H1", "Capture 1 Control type": "Not a control", + "Analyte 1 Solution": "analyte2", + "Analyte 1 Plate id": "Plate 1", + "Analyte 1 Position": "H4", + "Analyte 1 Control type": "Not a control", "Analyte 1 Concentration": { "value": 0.0, "unit": "nM" @@ -13628,7 +13880,11 @@ "Analyte 1 Molecular weight": { "value": 44000.0, "unit": "Da" - } + }, + "Regeneration 1 Solution": "Regeneration_Buffer", + "Regeneration 1 Plate id": "Plate 1", + "Regeneration 1 Position": "H12", + "Regeneration 1 Control type": "Not a control" } }, "detection type": "Surface Plasmon Resonance", @@ -38253,7 +38509,7 @@ "file name": "evaluation_name", "UNC path": "my_evaluation_path", "ASM converter name": "allotropy_cytiva_biacore_insight", - "ASM converter version": "0.1.113", + "ASM converter version": "0.1.116", "software name": "Biacore Insight Evaluation", "software version": "6.0.0.0000" },