diff --git a/src/allotropy/allotrope/models/adm/binding_affinity/rec/_2025/_03/binding_affinity.py b/src/allotropy/allotrope/models/adm/binding_affinity/rec/_2025/_03/binding_affinity.py index 7729825b11..a7c5e4e50a 100644 --- a/src/allotropy/allotrope/models/adm/binding_affinity/rec/_2025/_03/binding_affinity.py +++ b/src/allotropy/allotrope/models/adm/binding_affinity/rec/_2025/_03/binding_affinity.py @@ -1,6 +1,6 @@ # generated by datamodel-codegen: # filename: binding-affinity.schema.json -# timestamp: 2025-04-21T17:58:26+00:00 +# timestamp: 2025-09-17T17:07:42+00:00 from __future__ import annotations @@ -16,6 +16,7 @@ TQuantityValueNanomolar, TQuantityValuePercent, TQuantityValuePerMolarPerSecond, + TQuantityValueResponseUnit, TQuantityValueSecondTime, ) from allotropy.allotrope.models.shared.definitions.definitions import ( @@ -80,9 +81,6 @@ class StatisticsAggregateDocument: statistics_document: list[StatisticsDocumentItem] | None = None -TQuantityValueResponseUnit = Any - - @dataclass(kw_only=True) class TQuantityValueModel: unit: TUnit diff --git a/src/allotropy/allotrope/models/adm/binding_affinity_analyzer/wd/_2024/_12/binding_affinity_analyzer.py b/src/allotropy/allotrope/models/adm/binding_affinity_analyzer/wd/_2024/_12/binding_affinity_analyzer.py index 13be70f6ab..68b129cbec 100644 --- a/src/allotropy/allotrope/models/adm/binding_affinity_analyzer/wd/_2024/_12/binding_affinity_analyzer.py +++ b/src/allotropy/allotrope/models/adm/binding_affinity_analyzer/wd/_2024/_12/binding_affinity_analyzer.py @@ -1,6 +1,6 @@ # generated by datamodel-codegen: # filename: binding-affinity-analyzer.schema.json -# timestamp: 2025-08-29T17:23:20+00:00 +# timestamp: 2025-09-17T17:09:51+00:00 from __future__ import annotations @@ -16,7 +16,7 @@ TQuantityValuePercent, TQuantityValuePerMolarPerSecond, TQuantityValuePerSecond, - TQuantityValueResonanceUnits, + TQuantityValueResponseUnit, TQuantityValueSecondTime, ) from allotropy.allotrope.models.shared.definitions.definitions import ( @@ -105,10 +105,10 @@ class AnalysisSequenceDocument: @dataclass(kw_only=True) class ReportPointDocumentItem: - absolute_resonance: TQuantityValueResonanceUnits | None = None + absolute_resonance: TQuantityValueResponseUnit | None = None report_point_identifier: TStringValue | None = None identifier_role: TStringValue | None = None - relative_resonance: TQuantityValueResonanceUnits | None = None + relative_resonance: TQuantityValueResponseUnit | None = None time_setting: TQuantityValueSecondTime | None = None @@ -273,7 +273,7 @@ class ProcessedDataDocumentItem: ) binding_off_rate_measurement_datum__koff_: TQuantityValuePerSecond | None = None equilibrium_dissociation_constant__KD_: TQuantityValueMolar | None = None - maximum_binding_capacity__Rmax_: TQuantityValueResonanceUnits | None = None + maximum_binding_capacity__Rmax_: TQuantityValueResponseUnit | None = None report_point_aggregate_document: ReportPointAggregateDocument | None = None diff --git a/src/allotropy/allotrope/models/shared/definitions/custom.py b/src/allotropy/allotrope/models/shared/definitions/custom.py index 19bd9c4468..76aadb76dc 100644 --- a/src/allotropy/allotrope/models/shared/definitions/custom.py +++ b/src/allotropy/allotrope/models/shared/definitions/custom.py @@ -66,12 +66,13 @@ RelativeLightUnit, RelativeLightUnitTimesMilliliter, RelativeLightUnitTimesSecond, - ResonanceUnits, + ResponseUnit, + ResponseUnitPerSecond, SecondTime, SeimensPerMeter, SquareCentimetersPerGram, SquareCentimetersPerMole, - SquareResonanceUnits, + SquareResponseUnit, TODO, Unitless, UnitPerLiter, @@ -755,12 +756,24 @@ class TNullableQuantityValueRelativeLightUnitTimesSecond( @dataclass(frozen=True, kw_only=True) -class TQuantityValueResonanceUnits(ResonanceUnits, TQuantityValue): +class TQuantityValueResponseUnit(ResponseUnit, TQuantityValue): pass @dataclass(frozen=True, kw_only=True) -class TNullableQuantityValueResonanceUnits(ResonanceUnits, TNullableQuantityValue): +class TNullableQuantityValueResponseUnit(ResponseUnit, TNullableQuantityValue): + pass + + +@dataclass(frozen=True, kw_only=True) +class TQuantityValueResponseUnitPerSecond(ResponseUnitPerSecond, TQuantityValue): + pass + + +@dataclass(frozen=True, kw_only=True) +class TNullableQuantityValueResponseUnitPerSecond( + ResponseUnitPerSecond, TNullableQuantityValue +): pass @@ -809,13 +822,13 @@ class TNullableQuantityValueSquareCentimetersPerMole( @dataclass(frozen=True, kw_only=True) -class TQuantityValueSquareResonanceUnits(SquareResonanceUnits, TQuantityValue): +class TQuantityValueSquareResponseUnit(SquareResponseUnit, TQuantityValue): pass @dataclass(frozen=True, kw_only=True) -class TNullableQuantityValueSquareResonanceUnits( - SquareResonanceUnits, TNullableQuantityValue +class TNullableQuantityValueSquareResponseUnit( + SquareResponseUnit, TNullableQuantityValue ): pass diff --git a/src/allotropy/allotrope/models/shared/definitions/units.py b/src/allotropy/allotrope/models/shared/definitions/units.py index 58767bb482..bdaeda3676 100644 --- a/src/allotropy/allotrope/models/shared/definitions/units.py +++ b/src/allotropy/allotrope/models/shared/definitions/units.py @@ -310,10 +310,15 @@ class RelativeLightUnitTimesSecond(HasUnit): @dataclass(frozen=True, kw_only=True) -class ResonanceUnits(HasUnit): +class ResponseUnit(HasUnit): unit: str = "RU" +@dataclass(frozen=True, kw_only=True) +class ResponseUnitPerSecond(HasUnit): + unit: str = "RU/s" + + @dataclass(frozen=True, kw_only=True) class SecondTime(HasUnit): unit: str = "s" @@ -335,7 +340,7 @@ class SquareCentimetersPerMole(HasUnit): @dataclass(frozen=True, kw_only=True) -class SquareResonanceUnits(HasUnit): +class SquareResponseUnit(HasUnit): unit: str = "RU^2" diff --git a/src/allotropy/allotrope/schema_mappers/adm/binding_affinity_analyzer/benchling/_2024/_12/binding_affinity_analyzer.py b/src/allotropy/allotrope/schema_mappers/adm/binding_affinity_analyzer/benchling/_2024/_12/binding_affinity_analyzer.py index ee3b7e203b..c0b0f4f443 100644 --- a/src/allotropy/allotrope/schema_mappers/adm/binding_affinity_analyzer/benchling/_2024/_12/binding_affinity_analyzer.py +++ b/src/allotropy/allotrope/schema_mappers/adm/binding_affinity_analyzer/benchling/_2024/_12/binding_affinity_analyzer.py @@ -33,7 +33,7 @@ TQuantityValuePercent, TQuantityValuePerMolarPerSecond, TQuantityValuePerSecond, - TQuantityValueResonanceUnits, + TQuantityValueResponseUnit, TQuantityValueSecondTime, ) from allotropy.allotrope.models.shared.definitions.definitions import TDatacube @@ -256,7 +256,7 @@ def _get_surface_plasmon_resonance_measurement_document( measurement.equilibrium_dissociation_constant__kd_, ), maximum_binding_capacity__Rmax_=quantity_or_none( - TQuantityValueResonanceUnits, + TQuantityValueResponseUnit, measurement.maximum_binding_capacity__rmax_, ), report_point_aggregate_document=( @@ -266,11 +266,11 @@ def _get_surface_plasmon_resonance_measurement_document( ReportPointDocumentItem( report_point_identifier=report_point.identifier, identifier_role=report_point.identifier_role, - absolute_resonance=TQuantityValueResonanceUnits( + absolute_resonance=TQuantityValueResponseUnit( value=report_point.absolute_resonance ), relative_resonance=quantity_or_none( - TQuantityValueResonanceUnits, + TQuantityValueResponseUnit, report_point.relative_resonance, ), time_setting=TQuantityValueSecondTime( diff --git a/src/allotropy/allotrope/schemas/adm/binding-affinity-analyzer/WD/2024/12/binding-affinity-analyzer.schema.json b/src/allotropy/allotrope/schemas/adm/binding-affinity-analyzer/WD/2024/12/binding-affinity-analyzer.schema.json index c6854073bf..b6a6503876 100644 --- a/src/allotropy/allotrope/schemas/adm/binding-affinity-analyzer/WD/2024/12/binding-affinity-analyzer.schema.json +++ b/src/allotropy/allotrope/schemas/adm/binding-affinity-analyzer/WD/2024/12/binding-affinity-analyzer.schema.json @@ -216,7 +216,7 @@ "$ref": "http://purl.allotrope.org/json-schemas/adm/core/REC/2024/09/core.schema#/$defs/tQuantityValue" }, { - "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/ResonanceUnits" + "$ref": "http://purl.allotrope.org/json-schemas/qudt/REC/2024/09/units.schema#/$defs/ResponseUnit" } ] } @@ -4958,7 +4958,7 @@ "unit": { "type": "string", "const": "RU", - "$asm.unit-iri": "http://qudt.org/vocab/unit#ResonanceUnits" + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#ResponseUnit" } }, "required": [ @@ -4970,7 +4970,7 @@ "unit": { "type": "string", "const": "RU/s", - "$asm.unit-iri": "http://qudt.org/vocab/unit#ResonanceUnitsPerSecond" + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#ResponseUnitPerSecond" } }, "required": [ diff --git a/src/allotropy/allotrope/schemas/adm/binding-affinity/REC/2025/03/binding-affinity.schema.json b/src/allotropy/allotrope/schemas/adm/binding-affinity/REC/2025/03/binding-affinity.schema.json index acba94db9d..1b6598f53a 100644 --- a/src/allotropy/allotrope/schemas/adm/binding-affinity/REC/2025/03/binding-affinity.schema.json +++ b/src/allotropy/allotrope/schemas/adm/binding-affinity/REC/2025/03/binding-affinity.schema.json @@ -12276,4 +12276,4 @@ "required": [ "$asm.manifest" ] -} \ No newline at end of file +} diff --git a/src/allotropy/allotrope/schemas/adm/flow-cytometry/BENCHLING/2025/03/flow-cytometry.schema.json b/src/allotropy/allotrope/schemas/adm/flow-cytometry/BENCHLING/2025/03/flow-cytometry.schema.json index c2309ef238..594b9718e9 100644 --- a/src/allotropy/allotrope/schemas/adm/flow-cytometry/BENCHLING/2025/03/flow-cytometry.schema.json +++ b/src/allotropy/allotrope/schemas/adm/flow-cytometry/BENCHLING/2025/03/flow-cytometry.schema.json @@ -11565,7 +11565,7 @@ "RU/s": { "properties": { "unit": { - "$asm.unit-iri": "http://qudt.org/vocab/unit#ResponseUnitsPerSecond", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#ResponseUnitPerSecond", "const": "RU/s", "type": "string" } diff --git a/src/allotropy/allotrope/schemas/shared/definitions/custom.json b/src/allotropy/allotrope/schemas/shared/definitions/custom.json index abe47993b4..884a3490c5 100644 --- a/src/allotropy/allotrope/schemas/shared/definitions/custom.json +++ b/src/allotropy/allotrope/schemas/shared/definitions/custom.json @@ -1199,23 +1199,43 @@ } ] }, - "tQuantityValueResonanceUnits": { + "TQuantityValueResponseUnit": { "allOf": [ { "$ref": "#/$defs/tQuantityValue" }, { - "$ref": "#/$defs/ResonanceUnits" + "$ref": "#/$defs/ResponseUnit" } ] }, - "tNullableQuantityValueResonanceUnits": { + "tNullableQuantityValueResponseUnit": { "allOf": [ { "$ref": "#/$defs/tNullableQuantityValue" }, { - "$ref": "#/$defs/ResonanceUnits" + "$ref": "#/$defs/ResponseUnit" + } + ] + }, + "TQuantityValueResponseUnitPerSecond": { + "allOf": [ + { + "$ref": "#/$defs/tQuantityValue" + }, + { + "$ref": "#/$defs/ResponseUnitPerSecond" + } + ] + }, + "tNullableQuantityValueResponseUnitPerSecond": { + "allOf": [ + { + "$ref": "#/$defs/tNullableQuantityValue" + }, + { + "$ref": "#/$defs/ResponseUnitPerSecond" } ] }, @@ -1299,23 +1319,23 @@ } ] }, - "tQuantityValueSquareResonanceUnits": { + "tQuantityValueSquareResponseUnit": { "allOf": [ { "$ref": "#/$defs/tQuantityValue" }, { - "$ref": "#/$defs/SquareResonanceUnits" + "$ref": "#/$defs/SquareResponseUnit" } ] }, - "tNullableQuantityValueSquareResonanceUnits": { + "tNullableQuantityValueSquareResponseUnit": { "allOf": [ { "$ref": "#/$defs/tNullableQuantityValue" }, { - "$ref": "#/$defs/SquareResonanceUnits" + "$ref": "#/$defs/SquareResponseUnit" } ] }, @@ -1379,4 +1399,4 @@ } ] } -} \ No newline at end of file +} diff --git a/src/allotropy/allotrope/schemas/shared/definitions/units.json b/src/allotropy/allotrope/schemas/shared/definitions/units.json index ee95d3401d..e4b24e043b 100644 --- a/src/allotropy/allotrope/schemas/shared/definitions/units.json +++ b/src/allotropy/allotrope/schemas/shared/definitions/units.json @@ -719,12 +719,24 @@ "unit" ] }, - "ResonanceUnits": { + "ResponseUnit": { "properties": { "unit": { "type": "string", "const": "RU", - "$asm.unit-iri": "http://qudt.org/vocab/unit#ResonanceUnits" + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#ResponseUnit" + } + }, + "required": [ + "unit" + ] + }, + "ResponseUnitPerSecond": { + "properties": { + "unit": { + "type": "string", + "const": "RU/s", + "$asm.unit-iri": "http://purl.allotrope.org/ontology/qudt-ext/unit#ResponseUnitPerSecond" } }, "required": [ @@ -779,7 +791,7 @@ "unit" ] }, - "SquareResonanceUnits": { + "SquareResponseUnit": { "properties": { "unit": { "type": "string", diff --git a/src/allotropy/parsers/cytiva_biacore_insight/cytiva_biacore_insight_data_creator.py b/src/allotropy/parsers/cytiva_biacore_insight/cytiva_biacore_insight_data_creator.py index d7a1f32a91..f81e868fd9 100644 --- a/src/allotropy/parsers/cytiva_biacore_insight/cytiva_biacore_insight_data_creator.py +++ b/src/allotropy/parsers/cytiva_biacore_insight/cytiva_biacore_insight_data_creator.py @@ -4,10 +4,13 @@ TQuantityValueHertz, TQuantityValueNumber, TQuantityValueSecondTime, - TQuantityValueSquareResonanceUnits, + TQuantityValueSquareResponseUnit, TQuantityValueUnitless, ) -from allotropy.allotrope.models.shared.definitions.units import Unitless +from allotropy.allotrope.models.shared.definitions.units import ( + ResponseUnitPerSecond, + Unitless, +) from allotropy.allotrope.schema_mappers.adm.binding_affinity_analyzer.benchling._2024._12.binding_affinity_analyzer import ( Measurement, MeasurementGroup, @@ -107,7 +110,7 @@ def _get_measurements( processed_data_custom_info=( { "Kinetics Chi squared": quantity_or_none( - TQuantityValueSquareResonanceUnits, + TQuantityValueSquareResponseUnit, measurement.kinetics.kinetics_chi_squared, ), "tc": quantity_or_none( @@ -174,7 +177,7 @@ def _get_report_point_calc_data(rp: ReportPointData) -> list[CalculatedDocument] name="Slope", value=rp.slope, data_sources=[data_source], - unit=Unitless.unit, + unit=ResponseUnitPerSecond.unit, ) ) if rp.standard_deviation is not None: 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 6553531f72..e47d8cb06f 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 @@ -11,7 +11,7 @@ TQuantityValueDalton, TQuantityValueMicroliterPerMinute, TQuantityValueNanomolar, - TQuantityValueResonanceUnits, + TQuantityValueResponseUnit, TQuantityValueSecondTime, ) from allotropy.allotrope.schema_mappers.adm.binding_affinity_analyzer.benchling._2024._12.binding_affinity_analyzer import ( @@ -367,7 +367,7 @@ def create( str, "Sensorgram type", run_info.get(str, "Sensorgram type") ), "Level": quantity_or_none( - TQuantityValueResonanceUnits, + TQuantityValueResponseUnit, run_info.get(float, "Level (RU)"), ), }, diff --git a/src/allotropy/parsers/cytiva_biacore_t200_control/cytiva_biacore_t200_control_data_creator.py b/src/allotropy/parsers/cytiva_biacore_t200_control/cytiva_biacore_t200_control_data_creator.py index cc0ab6ac16..625f7005b0 100644 --- a/src/allotropy/parsers/cytiva_biacore_t200_control/cytiva_biacore_t200_control_data_creator.py +++ b/src/allotropy/parsers/cytiva_biacore_t200_control/cytiva_biacore_t200_control_data_creator.py @@ -14,7 +14,11 @@ from allotropy.allotrope.models.shared.definitions.definitions import ( FieldComponentDatatype, ) -from allotropy.allotrope.models.shared.definitions.units import ResonanceUnits, Unitless +from allotropy.allotrope.models.shared.definitions.units import ( + ResponseUnit, + ResponseUnitPerSecond, + Unitless, +) from allotropy.allotrope.schema_mappers.adm.binding_affinity_analyzer.benchling._2024._12.binding_affinity_analyzer import ( DeviceControlDocument, DeviceDocument, @@ -199,14 +203,14 @@ def create_calculated_data(data: Data) -> list[CalculatedDocument]: value="min_resonance", view_data=report_point_data_view, source_configs=(absolute_resonance_conf,), - unit=ResonanceUnits.unit, + unit=ResponseUnit.unit, ), CalculatedDataConfig( name="Max Resonance", value="max_resonance", view_data=report_point_data_view, source_configs=(absolute_resonance_conf,), - unit=ResonanceUnits.unit, + unit=ResponseUnit.unit, ), CalculatedDataConfig( name="LRSD", @@ -220,7 +224,7 @@ def create_calculated_data(data: Data) -> list[CalculatedDocument]: value="slope", view_data=report_point_data_view, source_configs=(absolute_resonance_conf,), - unit=Unitless.unit, + unit=ResponseUnitPerSecond.unit, ), CalculatedDataConfig( name="SD", 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 bf60c3e4f3..09dc9b0535 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 @@ -14953,7 +14953,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7494972529140543, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_513", "data source aggregate document": { @@ -15001,7 +15001,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7867915908653017, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_516", "data source aggregate document": { @@ -15049,7 +15049,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.20805434213723262, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_519", "data source aggregate document": { @@ -15097,7 +15097,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7287387094744215, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_522", "data source aggregate document": { @@ -15145,7 +15145,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.46930562302892476, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_525", "data source aggregate document": { @@ -15193,7 +15193,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.511052927324407, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_528", "data source aggregate document": { @@ -15241,7 +15241,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.15962089329975682, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_531", "data source aggregate document": { @@ -15289,7 +15289,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8800268038356154, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_534", "data source aggregate document": { @@ -15337,7 +15337,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.026221144068177882, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_537", "data source aggregate document": { @@ -15385,7 +15385,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.43792826345309976, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_540", "data source aggregate document": { @@ -15433,7 +15433,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6953860929508215, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_543", "data source aggregate document": { @@ -15481,7 +15481,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5464456841503683, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_546", "data source aggregate document": { @@ -15529,7 +15529,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5243996613162969, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_549", "data source aggregate document": { @@ -15577,7 +15577,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.564231773691298, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_552", "data source aggregate document": { @@ -15625,7 +15625,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.49545067135425835, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_555", "data source aggregate document": { @@ -15673,7 +15673,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9387407206515475, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_558", "data source aggregate document": { @@ -15721,7 +15721,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.40612143475574247, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_561", "data source aggregate document": { @@ -15769,7 +15769,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0979573150959695, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_564", "data source aggregate document": { @@ -15817,7 +15817,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.641084313363004, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_567", "data source aggregate document": { @@ -15865,7 +15865,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8230171956409197, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_570", "data source aggregate document": { @@ -15913,7 +15913,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.044630603356760834, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_573", "data source aggregate document": { @@ -15961,7 +15961,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.45799954774839224, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_576", "data source aggregate document": { @@ -16009,7 +16009,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4444983291685548, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_579", "data source aggregate document": { @@ -16057,7 +16057,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7925928168029068, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_582", "data source aggregate document": { @@ -16105,7 +16105,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.15433931636344567, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_585", "data source aggregate document": { @@ -16153,7 +16153,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.08552508082928723, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_588", "data source aggregate document": { @@ -16201,7 +16201,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8646445145121111, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_591", "data source aggregate document": { @@ -16249,7 +16249,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5646198629581105, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_594", "data source aggregate document": { @@ -16297,7 +16297,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.13897147672480303, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_597", "data source aggregate document": { @@ -16345,7 +16345,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9104695340287587, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_600", "data source aggregate document": { @@ -16393,7 +16393,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7922128833123692, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_603", "data source aggregate document": { @@ -16441,7 +16441,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.006769104512593382, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_606", "data source aggregate document": { @@ -16489,7 +16489,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6281039833222913, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_609", "data source aggregate document": { @@ -16537,7 +16537,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.40745564952610236, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_612", "data source aggregate document": { @@ -16585,7 +16585,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8512584582818794, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_615", "data source aggregate document": { @@ -16633,7 +16633,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.049462023098615915, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_618", "data source aggregate document": { @@ -16681,7 +16681,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.30119594764244706, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_621", "data source aggregate document": { @@ -16729,7 +16729,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.23499867703306154, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_624", "data source aggregate document": { @@ -16777,7 +16777,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9478956994622224, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_627", "data source aggregate document": { @@ -16825,7 +16825,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5580842799983111, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_630", "data source aggregate document": { @@ -16873,7 +16873,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6655791334765466, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_633", "data source aggregate document": { @@ -16921,7 +16921,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.480185471331683, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_636", "data source aggregate document": { @@ -16969,7 +16969,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5982563058418984, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_639", "data source aggregate document": { @@ -17017,7 +17017,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6273076040626901, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_642", "data source aggregate document": { @@ -17065,7 +17065,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7410161678255144, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_645", "data source aggregate document": { @@ -17113,7 +17113,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5280833267731315, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_648", "data source aggregate document": { @@ -17161,7 +17161,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0884144106144149, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_651", "data source aggregate document": { @@ -17209,7 +17209,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6160934593095417, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_654", "data source aggregate document": { @@ -17257,7 +17257,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6083152434185692, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_657", "data source aggregate document": { @@ -17305,7 +17305,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5409562830514808, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_660", "data source aggregate document": { @@ -17353,7 +17353,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7582408180482485, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_663", "data source aggregate document": { @@ -17401,7 +17401,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5671466574439542, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_666", "data source aggregate document": { @@ -17449,7 +17449,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5031231642809723, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_669", "data source aggregate document": { @@ -17497,7 +17497,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4669352260178722, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_672", "data source aggregate document": { @@ -17545,7 +17545,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.15915565933436582, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_675", "data source aggregate document": { @@ -17593,7 +17593,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4485324532464603, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_678", "data source aggregate document": { @@ -17641,7 +17641,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5784016623307426, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_681", "data source aggregate document": { @@ -17689,7 +17689,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4011100583606394, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_684", "data source aggregate document": { @@ -17737,7 +17737,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5125070188775361, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_687", "data source aggregate document": { @@ -17785,7 +17785,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9178663775987699, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_690", "data source aggregate document": { @@ -17833,7 +17833,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6202239366685386, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_693", "data source aggregate document": { @@ -17881,7 +17881,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.994081328762981, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_696", "data source aggregate document": { @@ -17929,7 +17929,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7908103005955787, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_699", "data source aggregate document": { @@ -17977,7 +17977,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.040930529441466246, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_702", "data source aggregate document": { @@ -18025,7 +18025,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8814121543685266, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_705", "data source aggregate document": { @@ -18073,7 +18073,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.44382967852729693, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_708", "data source aggregate document": { @@ -18121,7 +18121,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8583414669497201, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_711", "data source aggregate document": { @@ -18169,7 +18169,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5967664679315464, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_714", "data source aggregate document": { @@ -18217,7 +18217,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7961688047162311, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_717", "data source aggregate document": { @@ -18265,7 +18265,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.41633143060144473, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_720", "data source aggregate document": { @@ -18313,7 +18313,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.44058494390537284, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_723", "data source aggregate document": { @@ -18361,7 +18361,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.2702391365721297, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_726", "data source aggregate document": { @@ -18409,7 +18409,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6562375978497327, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_729", "data source aggregate document": { @@ -18457,7 +18457,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.018669306189289747, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_732", "data source aggregate document": { @@ -18505,7 +18505,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.24379446435654883, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_735", "data source aggregate document": { @@ -18553,7 +18553,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.170762271522784, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_738", "data source aggregate document": { @@ -18601,7 +18601,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.36526301384083804, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_741", "data source aggregate document": { @@ -18649,7 +18649,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.695457088757579, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_744", "data source aggregate document": { @@ -18697,7 +18697,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.31643350852355145, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_747", "data source aggregate document": { @@ -18745,7 +18745,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7223206505449327, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_750", "data source aggregate document": { @@ -18793,7 +18793,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.14289964264738841, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_753", "data source aggregate document": { @@ -18841,7 +18841,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6352179418096711, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_756", "data source aggregate document": { @@ -18889,7 +18889,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7335193254992606, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_759", "data source aggregate document": { @@ -18937,7 +18937,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.045119966220456, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_762", "data source aggregate document": { @@ -18985,7 +18985,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5238558955938393, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_765", "data source aggregate document": { @@ -19033,7 +19033,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9579257901098309, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_768", "data source aggregate document": { @@ -19081,7 +19081,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8929024842066305, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_771", "data source aggregate document": { @@ -19129,7 +19129,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4931406399703496, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_774", "data source aggregate document": { @@ -19177,7 +19177,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.1894391309088449, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_777", "data source aggregate document": { @@ -19225,7 +19225,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6082400931965867, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_780", "data source aggregate document": { @@ -19273,7 +19273,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.13927210220759267, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_783", "data source aggregate document": { @@ -19321,7 +19321,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.02456683163960094, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_786", "data source aggregate document": { @@ -19369,7 +19369,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.08030195616220326, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_789", "data source aggregate document": { @@ -19417,7 +19417,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5010340610319527, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_792", "data source aggregate document": { @@ -19465,7 +19465,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.07718372774599136, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_795", "data source aggregate document": { @@ -19513,7 +19513,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5635074648994866, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_798", "data source aggregate document": { @@ -19561,7 +19561,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8689729707397833, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_801", "data source aggregate document": { @@ -19609,7 +19609,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.05663722397743731, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_804", "data source aggregate document": { @@ -19657,7 +19657,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7986659698001375, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_807", "data source aggregate document": { @@ -19705,7 +19705,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.46162120856569133, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_810", "data source aggregate document": { @@ -19753,7 +19753,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.2193869138731065, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_813", "data source aggregate document": { @@ -19801,7 +19801,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8227831719039573, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_816", "data source aggregate document": { @@ -19849,7 +19849,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3339685994912919, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_819", "data source aggregate document": { @@ -19897,7 +19897,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5872030861224324, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_822", "data source aggregate document": { @@ -19945,7 +19945,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.32801311151358326, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_825", "data source aggregate document": { @@ -19993,7 +19993,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.40857372514835355, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_828", "data source aggregate document": { @@ -20041,7 +20041,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9357734840935762, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_831", "data source aggregate document": { @@ -20089,7 +20089,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4569850464479427, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_834", "data source aggregate document": { @@ -20137,7 +20137,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.02731312598722635, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_837", "data source aggregate document": { @@ -20185,7 +20185,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.452841316386982, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_840", "data source aggregate document": { @@ -20233,7 +20233,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3276970242583379, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_843", "data source aggregate document": { @@ -20281,7 +20281,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.1823487127340282, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_846", "data source aggregate document": { @@ -20329,7 +20329,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.23714166062199638, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_849", "data source aggregate document": { @@ -20377,7 +20377,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8151112320511065, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_852", "data source aggregate document": { @@ -20425,7 +20425,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7871709065702481, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_855", "data source aggregate document": { @@ -20473,7 +20473,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.826843503015937, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_858", "data source aggregate document": { @@ -20521,7 +20521,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7733377312034602, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_861", "data source aggregate document": { @@ -20569,7 +20569,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6119360747756639, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_864", "data source aggregate document": { @@ -20617,7 +20617,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8907954521761038, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_867", "data source aggregate document": { @@ -20665,7 +20665,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.06584893429920846, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_870", "data source aggregate document": { @@ -20713,7 +20713,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.46513548485378287, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_873", "data source aggregate document": { @@ -20761,7 +20761,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.12469499364557701, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_876", "data source aggregate document": { @@ -20809,7 +20809,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9270181280865522, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_879", "data source aggregate document": { @@ -20857,7 +20857,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8019147673772041, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_882", "data source aggregate document": { @@ -20905,7 +20905,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.1941573297615291, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_885", "data source aggregate document": { @@ -20953,7 +20953,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9770205274320889, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_888", "data source aggregate document": { @@ -21001,7 +21001,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3764971325087507, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_891", "data source aggregate document": { @@ -21049,7 +21049,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6207584496113606, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_894", "data source aggregate document": { @@ -21097,7 +21097,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8476344777782863, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_897", "data source aggregate document": { @@ -21145,7 +21145,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3208360046711972, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_900", "data source aggregate document": { @@ -21193,7 +21193,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.47476797854970443, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_903", "data source aggregate document": { @@ -21241,7 +21241,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6730943694634621, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_906", "data source aggregate document": { @@ -21289,7 +21289,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.2771330863588659, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_909", "data source aggregate document": { @@ -21337,7 +21337,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.07955735660614349, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_912", "data source aggregate document": { @@ -21385,7 +21385,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7048388771730069, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_915", "data source aggregate document": { @@ -21433,7 +21433,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7364146881985666, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_918", "data source aggregate document": { @@ -21481,7 +21481,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.17144688847466838, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_921", "data source aggregate document": { @@ -21529,7 +21529,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5753327044230352, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_924", "data source aggregate document": { @@ -21577,7 +21577,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.1190986094075428, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_927", "data source aggregate document": { @@ -21625,7 +21625,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8485372440407062, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_930", "data source aggregate document": { @@ -21673,7 +21673,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.28844986170140874, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_933", "data source aggregate document": { @@ -21721,7 +21721,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.11426416108529791, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_936", "data source aggregate document": { @@ -21769,7 +21769,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6604277195361778, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_939", "data source aggregate document": { @@ -21817,7 +21817,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.011180444021753999, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_942", "data source aggregate document": { @@ -21865,7 +21865,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7455856918181033, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_945", "data source aggregate document": { @@ -21913,7 +21913,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3193760048900005, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_948", "data source aggregate document": { @@ -21961,7 +21961,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.14166299714922204, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_951", "data source aggregate document": { @@ -22009,7 +22009,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.03702171529329956, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_954", "data source aggregate document": { @@ -22057,7 +22057,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.04230313124482754, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_957", "data source aggregate document": { @@ -22105,7 +22105,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.18566403140600807, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_960", "data source aggregate document": { @@ -22153,7 +22153,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.25057136954366943, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_963", "data source aggregate document": { @@ -22201,7 +22201,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6576399888829758, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_966", "data source aggregate document": { @@ -22249,7 +22249,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.18012959682932883, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_969", "data source aggregate document": { @@ -22297,7 +22297,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9848812955186499, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_972", "data source aggregate document": { @@ -22345,7 +22345,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8742487852749123, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_975", "data source aggregate document": { @@ -22393,7 +22393,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5224389160664158, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_978", "data source aggregate document": { @@ -22441,7 +22441,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6572076769254177, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_981", "data source aggregate document": { @@ -22489,7 +22489,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.26978503475285753, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_984", "data source aggregate document": { @@ -22537,7 +22537,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.18236611663045155, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_987", "data source aggregate document": { @@ -22585,7 +22585,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7000927328337804, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_990", "data source aggregate document": { @@ -22633,7 +22633,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.24400262114478943, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_993", "data source aggregate document": { @@ -22681,7 +22681,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3183913289111008, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_996", "data source aggregate document": { @@ -22729,7 +22729,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.27294277370266795, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_999", "data source aggregate document": { @@ -22777,7 +22777,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7442513681927304, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1002", "data source aggregate document": { @@ -22825,7 +22825,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.2955212665448038, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1005", "data source aggregate document": { @@ -22873,7 +22873,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4183523816061445, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1008", "data source aggregate document": { @@ -22921,7 +22921,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7673362081252133, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1011", "data source aggregate document": { @@ -22969,7 +22969,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.30418778734318264, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1014", "data source aggregate document": { @@ -23017,7 +23017,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9227657014539, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1017", "data source aggregate document": { @@ -23065,7 +23065,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.41989370177575736, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1020", "data source aggregate document": { @@ -23113,7 +23113,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5428934146316073, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1023", "data source aggregate document": { @@ -23161,7 +23161,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6487646179673229, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1026", "data source aggregate document": { @@ -23209,7 +23209,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6322778505000698, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1029", "data source aggregate document": { @@ -23257,7 +23257,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.982817020121586, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1032", "data source aggregate document": { @@ -23305,7 +23305,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8122180491278364, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1035", "data source aggregate document": { @@ -23353,7 +23353,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3285435804715833, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1038", "data source aggregate document": { @@ -23401,7 +23401,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.047514409521695056, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1041", "data source aggregate document": { @@ -23449,7 +23449,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9088963958551036, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1044", "data source aggregate document": { @@ -23497,7 +23497,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9972652438499626, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1047", "data source aggregate document": { @@ -23545,7 +23545,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.526055660647266, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1050", "data source aggregate document": { @@ -23593,7 +23593,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.04942322975313984, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1053", "data source aggregate document": { @@ -23641,7 +23641,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8855643334452924, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1056", "data source aggregate document": { @@ -23689,7 +23689,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3044831845137096, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1059", "data source aggregate document": { @@ -23737,7 +23737,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.43819593196421347, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1062", "data source aggregate document": { @@ -23785,7 +23785,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.11597640010558474, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1065", "data source aggregate document": { @@ -23833,7 +23833,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8701056668439713, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1068", "data source aggregate document": { @@ -23881,7 +23881,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5839789715855893, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1071", "data source aggregate document": { @@ -23929,7 +23929,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.2974017276648988, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1074", "data source aggregate document": { @@ -23977,7 +23977,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8015474043560598, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1077", "data source aggregate document": { @@ -24025,7 +24025,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.21564694671800666, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1080", "data source aggregate document": { @@ -24073,7 +24073,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9511939082344119, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1083", "data source aggregate document": { @@ -24121,7 +24121,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3697186108505798, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1086", "data source aggregate document": { @@ -24169,7 +24169,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.1769020866897778, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1089", "data source aggregate document": { @@ -24217,7 +24217,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.48104955975802444, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1092", "data source aggregate document": { @@ -24265,7 +24265,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7638309160183334, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1095", "data source aggregate document": { @@ -24313,7 +24313,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4680534461027416, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1098", "data source aggregate document": { @@ -24361,7 +24361,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6492073983416095, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1101", "data source aggregate document": { @@ -24409,7 +24409,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6763849985967988, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1104", "data source aggregate document": { @@ -24457,7 +24457,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8797850954898376, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1107", "data source aggregate document": { @@ -24505,7 +24505,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.18785989522219637, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1110", "data source aggregate document": { @@ -24553,7 +24553,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8988428344477651, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1113", "data source aggregate document": { @@ -24601,7 +24601,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4739910332920627, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1116", "data source aggregate document": { @@ -24649,7 +24649,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6735856749152008, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1119", "data source aggregate document": { @@ -24697,7 +24697,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.2101958770638246, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1122", "data source aggregate document": { @@ -24745,7 +24745,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7059340624907418, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1125", "data source aggregate document": { @@ -24793,7 +24793,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6621779511034301, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1128", "data source aggregate document": { @@ -24841,7 +24841,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.059366020984905954, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1131", "data source aggregate document": { @@ -24889,7 +24889,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6235391493244995, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1134", "data source aggregate document": { @@ -24937,7 +24937,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.19440980127797425, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1137", "data source aggregate document": { @@ -24985,7 +24985,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8344743218051733, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1140", "data source aggregate document": { @@ -25033,7 +25033,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7576355769466955, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1143", "data source aggregate document": { @@ -25081,7 +25081,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.29094133072668016, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1146", "data source aggregate document": { @@ -25129,7 +25129,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.49501652412640595, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1149", "data source aggregate document": { @@ -25177,7 +25177,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9918716130025474, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1152", "data source aggregate document": { @@ -25225,7 +25225,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.2511359600116023, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1155", "data source aggregate document": { @@ -25273,7 +25273,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8330468109753592, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1158", "data source aggregate document": { @@ -25321,7 +25321,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.021107798279375145, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1161", "data source aggregate document": { @@ -25369,7 +25369,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3888484653182712, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1164", "data source aggregate document": { @@ -25417,7 +25417,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.30182083049701247, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1167", "data source aggregate document": { @@ -25465,7 +25465,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8101977254890892, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1170", "data source aggregate document": { @@ -25513,7 +25513,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4621586422620215, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1173", "data source aggregate document": { @@ -25561,7 +25561,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5760239364288592, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1176", "data source aggregate document": { @@ -25609,7 +25609,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5465073281189134, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1179", "data source aggregate document": { @@ -25657,7 +25657,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.16829193110595453, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1182", "data source aggregate document": { @@ -25705,7 +25705,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.22983733776505277, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1185", "data source aggregate document": { @@ -25753,7 +25753,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.18311149460002318, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1188", "data source aggregate document": { @@ -25801,7 +25801,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5530041722967732, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1191", "data source aggregate document": { @@ -25849,7 +25849,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9632560537137059, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1194", "data source aggregate document": { @@ -25897,7 +25897,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4401003996466808, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1197", "data source aggregate document": { @@ -25945,7 +25945,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5454136568472248, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1200", "data source aggregate document": { @@ -25993,7 +25993,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8015301039573426, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1203", "data source aggregate document": { @@ -26041,7 +26041,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7979407254916541, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1206", "data source aggregate document": { @@ -26089,7 +26089,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5821590539160086, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1209", "data source aggregate document": { @@ -26137,7 +26137,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8054193432877288, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1212", "data source aggregate document": { @@ -26185,7 +26185,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.357993374897444, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1215", "data source aggregate document": { @@ -26233,7 +26233,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.29294102695345703, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1218", "data source aggregate document": { @@ -26281,7 +26281,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8112985229801196, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1221", "data source aggregate document": { @@ -26329,7 +26329,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6181352392072625, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1224", "data source aggregate document": { @@ -26377,7 +26377,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5262112091041762, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1227", "data source aggregate document": { @@ -26425,7 +26425,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.26928994519253835, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1230", "data source aggregate document": { @@ -26473,7 +26473,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.30741396964701284, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1233", "data source aggregate document": { @@ -26521,7 +26521,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.054602862360445203, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1236", "data source aggregate document": { @@ -26569,7 +26569,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5054060337143157, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1239", "data source aggregate document": { @@ -26617,7 +26617,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.1461682173006783, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1242", "data source aggregate document": { @@ -26665,7 +26665,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3647600302493379, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1245", "data source aggregate document": { @@ -26713,7 +26713,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7326240886176977, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1248", "data source aggregate document": { @@ -26761,7 +26761,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.03732274591838214, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1251", "data source aggregate document": { @@ -26809,7 +26809,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3507190696635909, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1254", "data source aggregate document": { @@ -26857,7 +26857,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6567166936419339, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1257", "data source aggregate document": { @@ -26905,7 +26905,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.28677587942483795, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1260", "data source aggregate document": { @@ -26953,7 +26953,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7817711302407396, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1263", "data source aggregate document": { @@ -27001,7 +27001,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4095577647075378, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1266", "data source aggregate document": { @@ -27049,7 +27049,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5212966860989106, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1269", "data source aggregate document": { @@ -27097,7 +27097,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.29274856857856146, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1272", "data source aggregate document": { @@ -27145,7 +27145,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.40900203267781676, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1275", "data source aggregate document": { @@ -27193,7 +27193,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.10053800035474625, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1278", "data source aggregate document": { @@ -27241,7 +27241,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.21690296452357904, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1281", "data source aggregate document": { @@ -27289,7 +27289,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.26638110944558124, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1284", "data source aggregate document": { @@ -27337,7 +27337,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.13279989302784534, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1287", "data source aggregate document": { @@ -27385,7 +27385,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.670904240789541, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1290", "data source aggregate document": { @@ -27433,7 +27433,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9755439892184241, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1293", "data source aggregate document": { @@ -27481,7 +27481,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.09438216167242885, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1296", "data source aggregate document": { @@ -27529,7 +27529,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.02715370813632112, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1299", "data source aggregate document": { @@ -27577,7 +27577,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.39182236759245426, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1302", "data source aggregate document": { @@ -27625,7 +27625,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8352755506033949, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1305", "data source aggregate document": { @@ -27673,7 +27673,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4879732035515004, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1308", "data source aggregate document": { @@ -27721,7 +27721,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3023325274376727, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1311", "data source aggregate document": { @@ -27769,7 +27769,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9949439985072456, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1314", "data source aggregate document": { @@ -27817,7 +27817,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3229126977551079, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1317", "data source aggregate document": { @@ -27865,7 +27865,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4589716518132376, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1320", "data source aggregate document": { @@ -27913,7 +27913,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.06184118713593101, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1323", "data source aggregate document": { @@ -27961,7 +27961,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.621945804695075, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1326", "data source aggregate document": { @@ -28009,7 +28009,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9446457198803703, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1329", "data source aggregate document": { @@ -28057,7 +28057,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7987476591818672, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1332", "data source aggregate document": { @@ -28105,7 +28105,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4318403888796455, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1335", "data source aggregate document": { @@ -28153,7 +28153,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4187724722985463, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1338", "data source aggregate document": { @@ -28201,7 +28201,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.40005729362819775, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1341", "data source aggregate document": { @@ -28249,7 +28249,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8390763481549051, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1344", "data source aggregate document": { @@ -28297,7 +28297,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.2973753631594861, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1347", "data source aggregate document": { @@ -28345,7 +28345,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.821672165471435, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1350", "data source aggregate document": { @@ -28393,7 +28393,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.37742032258733405, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1353", "data source aggregate document": { @@ -28441,7 +28441,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.17722828900658072, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1356", "data source aggregate document": { @@ -28489,7 +28489,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.05651549450460713, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1359", "data source aggregate document": { @@ -28537,7 +28537,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3448085656659783, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1362", "data source aggregate document": { @@ -28585,7 +28585,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4492889205208612, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1365", "data source aggregate document": { @@ -28633,7 +28633,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4197110304204148, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1368", "data source aggregate document": { @@ -28681,7 +28681,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.1990150326429908, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1371", "data source aggregate document": { @@ -28729,7 +28729,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9106784084736258, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1374", "data source aggregate document": { @@ -28777,7 +28777,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9672778010070574, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1377", "data source aggregate document": { @@ -28825,7 +28825,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.33989466432159254, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1380", "data source aggregate document": { @@ -28873,7 +28873,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.13036272874950083, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1383", "data source aggregate document": { @@ -28921,7 +28921,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4647592706927861, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1386", "data source aggregate document": { @@ -28969,7 +28969,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9535582120001453, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1389", "data source aggregate document": { @@ -29017,7 +29017,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.1543251845392014, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1392", "data source aggregate document": { @@ -29065,7 +29065,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4950962912622887, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1395", "data source aggregate document": { @@ -29113,7 +29113,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7847576268276093, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1398", "data source aggregate document": { @@ -29161,7 +29161,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.803981285779727, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1401", "data source aggregate document": { @@ -29209,7 +29209,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9008490980506202, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1404", "data source aggregate document": { @@ -29257,7 +29257,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3050150127303548, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1407", "data source aggregate document": { @@ -29305,7 +29305,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.03252197041100602, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1410", "data source aggregate document": { @@ -29353,7 +29353,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.15387232242815196, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1413", "data source aggregate document": { @@ -29401,7 +29401,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.14874369232651397, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1416", "data source aggregate document": { @@ -29449,7 +29449,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.44843208906465737, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1419", "data source aggregate document": { @@ -29497,7 +29497,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7031319142357626, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1422", "data source aggregate document": { @@ -29545,7 +29545,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5124228632212144, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1425", "data source aggregate document": { @@ -29593,7 +29593,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4868670344087547, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1428", "data source aggregate document": { @@ -29641,7 +29641,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6458656197918681, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1431", "data source aggregate document": { @@ -29689,7 +29689,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.20086881354912722, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1434", "data source aggregate document": { @@ -29737,7 +29737,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.24523960629658315, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1437", "data source aggregate document": { @@ -29785,7 +29785,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.42041275471604167, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1440", "data source aggregate document": { @@ -29833,7 +29833,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6255754878663344, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1443", "data source aggregate document": { @@ -29881,7 +29881,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.31571896680326195, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1446", "data source aggregate document": { @@ -29929,7 +29929,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.17699237173996152, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1449", "data source aggregate document": { @@ -29977,7 +29977,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.46017437328215316, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1452", "data source aggregate document": { @@ -30025,7 +30025,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.2191107950670651, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1455", "data source aggregate document": { @@ -30073,7 +30073,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.38675634791813984, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1458", "data source aggregate document": { @@ -30121,7 +30121,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4972361404001462, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1461", "data source aggregate document": { @@ -30169,7 +30169,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.31029465296844405, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1464", "data source aggregate document": { @@ -30217,7 +30217,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.2225403915796944, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1467", "data source aggregate document": { @@ -30265,7 +30265,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9201958174260096, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1470", "data source aggregate document": { @@ -30313,7 +30313,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7823647597178455, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1473", "data source aggregate document": { @@ -30361,7 +30361,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.1512956187311616, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1476", "data source aggregate document": { @@ -30409,7 +30409,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.23329709232331175, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1479", "data source aggregate document": { @@ -30457,7 +30457,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8801045709955395, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1482", "data source aggregate document": { @@ -30505,7 +30505,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7952872290071555, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1485", "data source aggregate document": { @@ -30553,7 +30553,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.07475519442229206, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1488", "data source aggregate document": { @@ -30601,7 +30601,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.25557365796953757, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1491", "data source aggregate document": { @@ -30649,7 +30649,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.78870384826116, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1494", "data source aggregate document": { @@ -30697,7 +30697,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.29179950450387304, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1497", "data source aggregate document": { @@ -30745,7 +30745,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7543166702437021, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1500", "data source aggregate document": { @@ -30793,7 +30793,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6689666828057095, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1503", "data source aggregate document": { @@ -30841,7 +30841,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.16088871062596344, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1506", "data source aggregate document": { @@ -30889,7 +30889,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3487583621143048, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1509", "data source aggregate document": { @@ -30937,7 +30937,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.43478770798038346, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1512", "data source aggregate document": { @@ -30985,7 +30985,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.17557220604001678, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1515", "data source aggregate document": { @@ -31033,7 +31033,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6540387238871117, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1518", "data source aggregate document": { @@ -31081,7 +31081,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7340462217436152, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1521", "data source aggregate document": { @@ -31129,7 +31129,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.28690573636433836, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1524", "data source aggregate document": { @@ -31177,7 +31177,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5799946395722285, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1527", "data source aggregate document": { @@ -31225,7 +31225,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6393880955637063, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1530", "data source aggregate document": { @@ -31273,7 +31273,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.561948744592203, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1533", "data source aggregate document": { @@ -31321,7 +31321,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.10991699631368568, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1536", "data source aggregate document": { @@ -31369,7 +31369,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.714738766781344, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1539", "data source aggregate document": { @@ -31417,7 +31417,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6951687126711849, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1542", "data source aggregate document": { @@ -31465,7 +31465,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9199498082310403, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1545", "data source aggregate document": { @@ -31513,7 +31513,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.26743653950314117, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1548", "data source aggregate document": { @@ -31561,7 +31561,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5002117128019153, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1551", "data source aggregate document": { @@ -31609,7 +31609,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7844351382031461, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1554", "data source aggregate document": { @@ -31657,7 +31657,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.314081486329039, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1557", "data source aggregate document": { @@ -31705,7 +31705,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.614127430350833, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1560", "data source aggregate document": { @@ -31753,7 +31753,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.02407033106205625, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1563", "data source aggregate document": { @@ -31801,7 +31801,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6119256275477195, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1566", "data source aggregate document": { @@ -31849,7 +31849,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6598490314388185, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1569", "data source aggregate document": { @@ -31897,7 +31897,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.011557000977123644, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1572", "data source aggregate document": { @@ -31945,7 +31945,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6389067262304073, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1575", "data source aggregate document": { @@ -31993,7 +31993,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.854508915882199, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1578", "data source aggregate document": { @@ -32041,7 +32041,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.14438415977483487, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1581", "data source aggregate document": { @@ -32089,7 +32089,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8411586004860124, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1584", "data source aggregate document": { @@ -32137,7 +32137,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4102727561314685, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1587", "data source aggregate document": { @@ -32185,7 +32185,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6287116376579763, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1590", "data source aggregate document": { @@ -32233,7 +32233,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6028624230038174, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1593", "data source aggregate document": { @@ -32281,7 +32281,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7005478656610116, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1596", "data source aggregate document": { @@ -32329,7 +32329,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7988019537318974, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1599", "data source aggregate document": { @@ -32377,7 +32377,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6965164103577361, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1602", "data source aggregate document": { @@ -32425,7 +32425,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.08835339031055811, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1605", "data source aggregate document": { @@ -32473,7 +32473,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.2165123896982002, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1608", "data source aggregate document": { @@ -32521,7 +32521,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.2306953684512565, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1611", "data source aggregate document": { @@ -32569,7 +32569,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5170662044063165, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1614", "data source aggregate document": { @@ -32617,7 +32617,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0691551136523808, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1617", "data source aggregate document": { @@ -32665,7 +32665,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6238142839367662, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1620", "data source aggregate document": { @@ -32713,7 +32713,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.2000954199372652, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1623", "data source aggregate document": { @@ -32761,7 +32761,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3271057651782123, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1626", "data source aggregate document": { @@ -32809,7 +32809,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.1612973125044227, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1629", "data source aggregate document": { @@ -32857,7 +32857,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4435152927965156, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1632", "data source aggregate document": { @@ -32905,7 +32905,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7548795384108563, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1635", "data source aggregate document": { @@ -32953,7 +32953,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9769363263288181, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1638", "data source aggregate document": { @@ -33001,7 +33001,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4962803103799145, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1641", "data source aggregate document": { @@ -33049,7 +33049,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.2478546240541073, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1644", "data source aggregate document": { @@ -33097,7 +33097,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6441639085906121, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1647", "data source aggregate document": { @@ -33145,7 +33145,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.26135482171811353, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1650", "data source aggregate document": { @@ -33193,7 +33193,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7352496098337151, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1653", "data source aggregate document": { @@ -33241,7 +33241,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.1207796011154938, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1656", "data source aggregate document": { @@ -33289,7 +33289,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.05131441644511392, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1659", "data source aggregate document": { @@ -33337,7 +33337,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9664945027909976, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1662", "data source aggregate document": { @@ -33385,7 +33385,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.37068925453505, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1665", "data source aggregate document": { @@ -33433,7 +33433,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.014050076483840157, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1668", "data source aggregate document": { @@ -33481,7 +33481,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7005203319612748, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1671", "data source aggregate document": { @@ -33529,7 +33529,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8036790477303151, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1674", "data source aggregate document": { @@ -33577,7 +33577,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3053488442746042, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1677", "data source aggregate document": { @@ -33625,7 +33625,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7584072843256262, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1680", "data source aggregate document": { @@ -33673,7 +33673,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.20799430529777063, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1683", "data source aggregate document": { @@ -33721,7 +33721,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8203474146462785, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1686", "data source aggregate document": { @@ -33769,7 +33769,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7655034435792974, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1689", "data source aggregate document": { @@ -33817,7 +33817,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.017618719879204492, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1692", "data source aggregate document": { @@ -33865,7 +33865,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8506191481560054, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1695", "data source aggregate document": { @@ -33913,7 +33913,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7658022905443117, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1698", "data source aggregate document": { @@ -33961,7 +33961,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3917768603934948, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1701", "data source aggregate document": { @@ -34009,7 +34009,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9702803153428389, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1704", "data source aggregate document": { @@ -34057,7 +34057,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4453708206963136, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1707", "data source aggregate document": { @@ -34105,7 +34105,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.24597984363058512, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1710", "data source aggregate document": { @@ -34153,7 +34153,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.855642739105618, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1713", "data source aggregate document": { @@ -34201,7 +34201,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9700780349101426, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1716", "data source aggregate document": { @@ -34249,7 +34249,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7721038447268412, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1719", "data source aggregate document": { @@ -34297,7 +34297,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3266344762169894, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1722", "data source aggregate document": { @@ -34345,7 +34345,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5733501417057404, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1725", "data source aggregate document": { @@ -34393,7 +34393,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8697810986389045, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1728", "data source aggregate document": { @@ -34441,7 +34441,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9302939203010083, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1731", "data source aggregate document": { @@ -34489,7 +34489,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5382769105810913, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1734", "data source aggregate document": { @@ -34537,7 +34537,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.03140324074437728, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1737", "data source aggregate document": { @@ -34585,7 +34585,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0975592301119016, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1740", "data source aggregate document": { @@ -34633,7 +34633,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.19708994445135752, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1743", "data source aggregate document": { @@ -34681,7 +34681,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9988996197086771, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1746", "data source aggregate document": { @@ -34729,7 +34729,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8988576133626299, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1749", "data source aggregate document": { @@ -34777,7 +34777,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.946286934200974, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1752", "data source aggregate document": { @@ -34825,7 +34825,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.34953542258021686, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1755", "data source aggregate document": { @@ -34873,7 +34873,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6019688934841781, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1758", "data source aggregate document": { @@ -34921,7 +34921,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.48157849638604444, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1761", "data source aggregate document": { @@ -34969,7 +34969,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8773177310913154, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1764", "data source aggregate document": { @@ -35017,7 +35017,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.028077469724435256, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1767", "data source aggregate document": { @@ -35065,7 +35065,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9173581109289562, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1770", "data source aggregate document": { @@ -35113,7 +35113,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.17223880618536724, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1773", "data source aggregate document": { @@ -35161,7 +35161,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9497821252881571, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1776", "data source aggregate document": { @@ -35209,7 +35209,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.551488790001016, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1779", "data source aggregate document": { @@ -35257,7 +35257,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6218419960132769, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1782", "data source aggregate document": { @@ -35305,7 +35305,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.36721812951477695, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1785", "data source aggregate document": { @@ -35353,7 +35353,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7647828023514095, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1788", "data source aggregate document": { @@ -35401,7 +35401,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6450864928015924, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1791", "data source aggregate document": { @@ -35449,7 +35449,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9134670962103797, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1794", "data source aggregate document": { @@ -35497,7 +35497,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8576961666796016, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1797", "data source aggregate document": { @@ -35545,7 +35545,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.560931356759536, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1800", "data source aggregate document": { @@ -35593,7 +35593,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8146389099459286, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1803", "data source aggregate document": { @@ -35641,7 +35641,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.47055909659365114, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1806", "data source aggregate document": { @@ -35689,7 +35689,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.957117238015416, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1809", "data source aggregate document": { @@ -35737,7 +35737,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.31349077973754513, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1812", "data source aggregate document": { @@ -35785,7 +35785,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5876096263766271, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1815", "data source aggregate document": { @@ -35833,7 +35833,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.09132249537148585, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1818", "data source aggregate document": { @@ -35881,7 +35881,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6008351374765841, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1821", "data source aggregate document": { @@ -35929,7 +35929,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8739585407174066, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1824", "data source aggregate document": { @@ -35977,7 +35977,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5513957297011662, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1827", "data source aggregate document": { @@ -36025,7 +36025,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.19393406472163144, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1830", "data source aggregate document": { @@ -36073,7 +36073,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3461305632916456, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1833", "data source aggregate document": { @@ -36121,7 +36121,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.34024524784419463, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1836", "data source aggregate document": { @@ -36169,7 +36169,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.04497513388768093, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1839", "data source aggregate document": { @@ -36217,7 +36217,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8697264068720352, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1842", "data source aggregate document": { @@ -36265,7 +36265,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6119258449885736, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1845", "data source aggregate document": { @@ -36313,7 +36313,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9696743166558768, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1848", "data source aggregate document": { @@ -36361,7 +36361,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5058853671684913, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1851", "data source aggregate document": { @@ -36409,7 +36409,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.163503339299231, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1854", "data source aggregate document": { @@ -36457,7 +36457,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6274051342351308, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1857", "data source aggregate document": { @@ -36505,7 +36505,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.03784802198737469, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1860", "data source aggregate document": { @@ -36553,7 +36553,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8387145065838932, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1863", "data source aggregate document": { @@ -36601,7 +36601,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.705224104323526, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1866", "data source aggregate document": { @@ -36649,7 +36649,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.407380100680953, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1869", "data source aggregate document": { @@ -36697,7 +36697,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.10599638050687565, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1872", "data source aggregate document": { @@ -36745,7 +36745,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7542923673815782, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1875", "data source aggregate document": { @@ -36793,7 +36793,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7362389145051991, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1878", "data source aggregate document": { @@ -36841,7 +36841,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6396250943107437, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1881", "data source aggregate document": { @@ -36889,7 +36889,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.18774461925911856, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1884", "data source aggregate document": { @@ -36937,7 +36937,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8305279855810763, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1887", "data source aggregate document": { @@ -36985,7 +36985,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9609535647446324, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1890", "data source aggregate document": { @@ -37033,7 +37033,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6555374856934533, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1893", "data source aggregate document": { @@ -37081,7 +37081,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.30330619485215027, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1896", "data source aggregate document": { @@ -37129,7 +37129,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.06634722566788365, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1899", "data source aggregate document": { @@ -37177,7 +37177,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5112457946640896, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1902", "data source aggregate document": { @@ -37225,7 +37225,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6603624982540789, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1905", "data source aggregate document": { @@ -37273,7 +37273,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.874928160225399, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1908", "data source aggregate document": { @@ -37321,7 +37321,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9394422857205176, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1911", "data source aggregate document": { @@ -37369,7 +37369,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6361521118042327, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1914", "data source aggregate document": { @@ -37417,7 +37417,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.12285429226817302, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1917", "data source aggregate document": { @@ -37465,7 +37465,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3519858896148561, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1920", "data source aggregate document": { @@ -37513,7 +37513,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4365524526561335, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1923", "data source aggregate document": { @@ -37561,7 +37561,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5232883989105309, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1926", "data source aggregate document": { @@ -37609,7 +37609,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6666278238992694, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1929", "data source aggregate document": { @@ -37657,7 +37657,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3574451995193685, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1932", "data source aggregate document": { @@ -37705,7 +37705,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.2017536343808881, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1935", "data source aggregate document": { @@ -37753,7 +37753,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9211633305085064, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1938", "data source aggregate document": { @@ -37801,7 +37801,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9665890544638869, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1941", "data source aggregate document": { @@ -37849,7 +37849,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5194790470603493, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1944", "data source aggregate document": { @@ -37897,7 +37897,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8437413541245007, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1947", "data source aggregate document": { @@ -37945,7 +37945,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9629890739678194, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1950", "data source aggregate document": { @@ -37993,7 +37993,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.03371385897343626, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1953", "data source aggregate document": { @@ -38041,7 +38041,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.9928474790453946, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1956", "data source aggregate document": { @@ -38089,7 +38089,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5573505385195552, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1959", "data source aggregate document": { @@ -38137,7 +38137,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7927882926823863, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1962", "data source aggregate document": { @@ -38185,7 +38185,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.8700783447567831, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1965", "data source aggregate document": { @@ -38233,7 +38233,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4842191729692048, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1968", "data source aggregate document": { @@ -38281,7 +38281,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.5475627934390015, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1971", "data source aggregate document": { @@ -38329,7 +38329,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.26354297977118635, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1974", "data source aggregate document": { @@ -38377,7 +38377,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7934269840472635, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1977", "data source aggregate document": { @@ -38425,7 +38425,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.3739330796940119, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1980", "data source aggregate document": { @@ -38473,7 +38473,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.296009355840377, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1983", "data source aggregate document": { @@ -38521,7 +38521,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.11482477869306662, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1986", "data source aggregate document": { @@ -38569,7 +38569,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.7666967552716385, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1989", "data source aggregate document": { @@ -38617,7 +38617,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.27376970427426195, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1992", "data source aggregate document": { @@ -38665,7 +38665,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.4804864150509869, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1995", "data source aggregate document": { @@ -38713,7 +38713,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.6437925882112479, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_INSIGHT_TEST_ID_1998", "data source aggregate document": { diff --git a/tests/parsers/cytiva_biacore_t200_control/testdata/ED_Fig.1a_B2 binding.json b/tests/parsers/cytiva_biacore_t200_control/testdata/ED_Fig.1a_B2 binding.json index c2d0896919..50c9792ca0 100644 --- a/tests/parsers/cytiva_biacore_t200_control/testdata/ED_Fig.1a_B2 binding.json +++ b/tests/parsers/cytiva_biacore_t200_control/testdata/ED_Fig.1a_B2 binding.json @@ -7563,7 +7563,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0818421215796416, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_312", "data source aggregate document": { @@ -7579,7 +7579,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0107801924545124, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_313", "data source aggregate document": { @@ -7595,7 +7595,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00379136069578733, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_314", "data source aggregate document": { @@ -7611,7 +7611,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0665723957754303, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_315", "data source aggregate document": { @@ -7627,7 +7627,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0171450837719963, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_316", "data source aggregate document": { @@ -7643,7 +7643,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00191600600277277, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_317", "data source aggregate document": { @@ -7659,7 +7659,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0151601387821573, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_318", "data source aggregate document": { @@ -7675,7 +7675,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00552487124271548, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_319", "data source aggregate document": { @@ -7691,7 +7691,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00221118723858851, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_320", "data source aggregate document": { @@ -7707,7 +7707,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0244997868912344, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_321", "data source aggregate document": { @@ -7723,7 +7723,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00154482319202651, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_322", "data source aggregate document": { @@ -7739,7 +7739,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00403881692224431, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_323", "data source aggregate document": { @@ -7755,7 +7755,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0201021627382823, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_324", "data source aggregate document": { @@ -7771,7 +7771,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00839578735390761, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_325", "data source aggregate document": { @@ -7787,7 +7787,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00501979773466721, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_326", "data source aggregate document": { @@ -7803,7 +7803,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00430482976467687, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_327", "data source aggregate document": { @@ -7819,7 +7819,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00668967398591428, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_328", "data source aggregate document": { @@ -7835,7 +7835,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00922653143173971, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_329", "data source aggregate document": { @@ -7851,7 +7851,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0310485034349544, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_330", "data source aggregate document": { @@ -7867,7 +7867,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00400346382594715, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_331", "data source aggregate document": { @@ -7883,7 +7883,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0201675582898583, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_332", "data source aggregate document": { @@ -7899,7 +7899,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0211573830088754, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_333", "data source aggregate document": { @@ -7915,7 +7915,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00793622688395323, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_334", "data source aggregate document": { @@ -7931,7 +7931,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0302124493049224, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_335", "data source aggregate document": { @@ -7947,7 +7947,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0098084880513096, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_336", "data source aggregate document": { @@ -7963,7 +7963,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0037060764833537, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_337", "data source aggregate document": { @@ -7979,7 +7979,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00953186351753126, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_338", "data source aggregate document": { @@ -7995,7 +7995,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0338058526473181, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_339", "data source aggregate document": { @@ -8011,7 +8011,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00880408689882656, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_340", "data source aggregate document": { @@ -8027,7 +8027,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0148561253697692, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_341", "data source aggregate document": { @@ -8043,7 +8043,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0133272047426273, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_342", "data source aggregate document": { @@ -8059,7 +8059,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0143435427238556, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_343", "data source aggregate document": { @@ -8075,7 +8075,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0308947315742686, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_344", "data source aggregate document": { @@ -8091,7 +8091,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0209492544173368, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_345", "data source aggregate document": { @@ -8107,7 +8107,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00518329489092219, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_346", "data source aggregate document": { @@ -8123,7 +8123,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0157049820168391, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_347", "data source aggregate document": { @@ -8139,7 +8139,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0401919569675638, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_348", "data source aggregate document": { @@ -8155,7 +8155,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00352976425648811, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_349", "data source aggregate document": { @@ -8171,7 +8171,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0196090178408006, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_350", "data source aggregate document": { @@ -8187,7 +8187,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0268965653979335, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_351", "data source aggregate document": { @@ -8203,7 +8203,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0142905088175089, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_352", "data source aggregate document": { @@ -8219,7 +8219,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.029866016068619, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_353", "data source aggregate document": { @@ -8235,7 +8235,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0132786003277606, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_354", "data source aggregate document": { @@ -8251,7 +8251,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0106074115010786, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_355", "data source aggregate document": { @@ -8267,7 +8267,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0100625730976078, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_356", "data source aggregate document": { @@ -8283,7 +8283,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0337934806652214, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_357", "data source aggregate document": { @@ -8299,7 +8299,7 @@ "calculated data name": "Slope", "calculated result": { "value": 4.41882547385742e-05, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_358", "data source aggregate document": { @@ -8315,7 +8315,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0166554760549173, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_359", "data source aggregate document": { @@ -8331,7 +8331,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0209664868879083, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_360", "data source aggregate document": { @@ -8347,7 +8347,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0239306464485796, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_361", "data source aggregate document": { @@ -8363,7 +8363,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0332897408362121, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_362", "data source aggregate document": { @@ -8379,7 +8379,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0126528910189289, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_363", "data source aggregate document": { @@ -8395,7 +8395,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0235422303520522, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_364", "data source aggregate document": { @@ -8411,7 +8411,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.016347041772429, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_365", "data source aggregate document": { @@ -8427,7 +8427,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0304051171987552, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_366", "data source aggregate document": { @@ -8443,7 +8443,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00286340512279669, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_367", "data source aggregate document": { @@ -8459,7 +8459,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0112008645221126, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_368", "data source aggregate document": { @@ -8475,7 +8475,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0243460108740821, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_369", "data source aggregate document": { @@ -8491,7 +8491,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0246376571405817, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_370", "data source aggregate document": { @@ -8507,7 +8507,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0294382840357239, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_371", "data source aggregate document": { @@ -8523,7 +8523,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00605159478555195, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_372", "data source aggregate document": { @@ -8539,7 +8539,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0216483172498099, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_373", "data source aggregate document": { @@ -8555,7 +8555,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0176125994369677, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_374", "data source aggregate document": { @@ -8571,7 +8571,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0375265123767847, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_375", "data source aggregate document": { @@ -8587,7 +8587,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00918234091355216, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_376", "data source aggregate document": { @@ -8603,7 +8603,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0179970341845557, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_377", "data source aggregate document": { @@ -8619,7 +8619,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0153934520448763, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_378", "data source aggregate document": { @@ -8635,7 +8635,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0355892997935358, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_379", "data source aggregate document": { @@ -8651,7 +8651,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.043651024814598, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_380", "data source aggregate document": { @@ -8667,7 +8667,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0219969593335502, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_381", "data source aggregate document": { @@ -8683,7 +8683,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0263309539149168, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_382", "data source aggregate document": { @@ -8699,7 +8699,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0252045978730851, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_383", "data source aggregate document": { @@ -9871,7 +9871,7 @@ "file name": "ED_Fig.1a_B2 binding.blr", "UNC path": "tests/parsers/cytiva_biacore_t200_control/testdata/ED_Fig.1a_B2 binding.blr", "ASM converter name": "allotropy_cytiva_biacore_t200_control", - "ASM converter version": "0.1.79", + "ASM converter version": "0.1.105", "software name": "Biacore T200 Control Software", "software version": "2.0.1" }, diff --git a/tests/parsers/cytiva_biacore_t200_control/testdata/ED_Fig.1a_B3 binding.json b/tests/parsers/cytiva_biacore_t200_control/testdata/ED_Fig.1a_B3 binding.json index a2eb52ff43..874285b83f 100644 --- a/tests/parsers/cytiva_biacore_t200_control/testdata/ED_Fig.1a_B3 binding.json +++ b/tests/parsers/cytiva_biacore_t200_control/testdata/ED_Fig.1a_B3 binding.json @@ -7563,7 +7563,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0480610119790476, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_312", "data source aggregate document": { @@ -7579,7 +7579,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.000360580250802429, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_313", "data source aggregate document": { @@ -7595,7 +7595,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.014545039835673, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_314", "data source aggregate document": { @@ -7611,7 +7611,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0422723388661713, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_315", "data source aggregate document": { @@ -7627,7 +7627,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00421380204564842, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_316", "data source aggregate document": { @@ -7643,7 +7643,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0140678059485995, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_317", "data source aggregate document": { @@ -7659,7 +7659,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00597139157290126, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_318", "data source aggregate document": { @@ -7675,7 +7675,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00383123983918819, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_319", "data source aggregate document": { @@ -7691,7 +7691,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.000787544975397723, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_320", "data source aggregate document": { @@ -7707,7 +7707,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0131310087730499, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_321", "data source aggregate document": { @@ -7723,7 +7723,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00182409516705617, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_322", "data source aggregate document": { @@ -7739,7 +7739,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0199943508351904, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_323", "data source aggregate document": { @@ -7755,7 +7755,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0117717756061961, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_324", "data source aggregate document": { @@ -7771,7 +7771,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00180818800013071, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_325", "data source aggregate document": { @@ -7787,7 +7787,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0140236197334124, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_326", "data source aggregate document": { @@ -7803,7 +7803,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00168722157763663, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_327", "data source aggregate document": { @@ -7819,7 +7819,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.000658959918827909, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_328", "data source aggregate document": { @@ -7835,7 +7835,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00615201566110344, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_329", "data source aggregate document": { @@ -7851,7 +7851,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0305942438420252, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_330", "data source aggregate document": { @@ -7867,7 +7867,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00173218469865124, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_331", "data source aggregate document": { @@ -7883,7 +7883,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0388557040301507, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_332", "data source aggregate document": { @@ -7899,7 +7899,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0212970152765134, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_333", "data source aggregate document": { @@ -7915,7 +7915,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0134509373110132, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_334", "data source aggregate document": { @@ -7931,7 +7931,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0299632412455383, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_335", "data source aggregate document": { @@ -7947,7 +7947,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00989487639554227, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_336", "data source aggregate document": { @@ -7963,7 +7963,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0115996649903585, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_337", "data source aggregate document": { @@ -7979,7 +7979,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00906402367449947, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_338", "data source aggregate document": { @@ -7995,7 +7995,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0229637992981751, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_339", "data source aggregate document": { @@ -8011,7 +8011,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00309141845477614, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_340", "data source aggregate document": { @@ -8027,7 +8027,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0469262713488243, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_341", "data source aggregate document": { @@ -8043,7 +8043,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0154871308346323, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_342", "data source aggregate document": { @@ -8059,7 +8059,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0176877118403617, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_343", "data source aggregate document": { @@ -8075,7 +8075,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0479691180262516, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_344", "data source aggregate document": { @@ -8091,7 +8091,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00754571272312412, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_345", "data source aggregate document": { @@ -8107,7 +8107,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0142094264605275, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_346", "data source aggregate document": { @@ -8123,7 +8123,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.000804672386276361, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_347", "data source aggregate document": { @@ -8139,7 +8139,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0327594735820022, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_348", "data source aggregate document": { @@ -8155,7 +8155,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00500212508746327, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_349", "data source aggregate document": { @@ -8171,7 +8171,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0583480703936401, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_350", "data source aggregate document": { @@ -8187,7 +8187,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0175109581137566, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_351", "data source aggregate document": { @@ -8203,7 +8203,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0189214541236873, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_352", "data source aggregate document": { @@ -8219,7 +8219,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0808417124487857, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_353", "data source aggregate document": { @@ -8235,7 +8235,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0159032750790051, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_354", "data source aggregate document": { @@ -8251,7 +8251,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0132567270757804, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_355", "data source aggregate document": { @@ -8267,7 +8267,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0219135555107746, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_356", "data source aggregate document": { @@ -8283,7 +8283,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0252668952141283, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_357", "data source aggregate document": { @@ -8299,7 +8299,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0109834569861843, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_358", "data source aggregate document": { @@ -8315,7 +8315,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0691812954538671, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_359", "data source aggregate document": { @@ -8331,7 +8331,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.016963022951303, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_360", "data source aggregate document": { @@ -8347,7 +8347,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0226332786261565, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_361", "data source aggregate document": { @@ -8363,7 +8363,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.121092015257063, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_362", "data source aggregate document": { @@ -8379,7 +8379,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00823416556749487, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_363", "data source aggregate document": { @@ -8395,7 +8395,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0115210082786075, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_364", "data source aggregate document": { @@ -8411,7 +8411,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0509862965624694, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_365", "data source aggregate document": { @@ -8427,7 +8427,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0206536322765164, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_366", "data source aggregate document": { @@ -8443,7 +8443,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0116233091556876, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_367", "data source aggregate document": { @@ -8459,7 +8459,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0814886397577918, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_368", "data source aggregate document": { @@ -8475,7 +8475,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0220588214272587, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_369", "data source aggregate document": { @@ -8491,7 +8491,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0294612641606898, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_370", "data source aggregate document": { @@ -8507,7 +8507,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.163360830492175, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_371", "data source aggregate document": { @@ -8523,7 +8523,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00111763335805214, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_372", "data source aggregate document": { @@ -8539,7 +8539,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0177775294818916, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_373", "data source aggregate document": { @@ -8555,7 +8555,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.081201522238537, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_374", "data source aggregate document": { @@ -8571,7 +8571,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0259120452816212, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_375", "data source aggregate document": { @@ -8587,7 +8587,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00566494993524566, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_376", "data source aggregate document": { @@ -8603,7 +8603,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0907752680822741, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_377", "data source aggregate document": { @@ -8619,7 +8619,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0159908780718674, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_378", "data source aggregate document": { @@ -8635,7 +8635,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.035039602296041, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_379", "data source aggregate document": { @@ -8651,7 +8651,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.218575072400286, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_380", "data source aggregate document": { @@ -8667,7 +8667,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00999562498122371, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_381", "data source aggregate document": { @@ -8683,7 +8683,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0290258977050183, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_382", "data source aggregate document": { @@ -8699,7 +8699,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.126722491370559, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_383", "data source aggregate document": { @@ -9871,7 +9871,7 @@ "file name": "ED_Fig.1a_B3 binding.blr", "UNC path": "tests/parsers/cytiva_biacore_t200_control/testdata/ED_Fig.1a_B3 binding.blr", "ASM converter name": "allotropy_cytiva_biacore_t200_control", - "ASM converter version": "0.1.79", + "ASM converter version": "0.1.105", "software name": "Biacore T200 Control Software", "software version": "2.0.1" }, diff --git a/tests/parsers/cytiva_biacore_t200_control/testdata/ED_Fig.6a_immobilization Her2-Her3.json b/tests/parsers/cytiva_biacore_t200_control/testdata/ED_Fig.6a_immobilization Her2-Her3.json index ccec9e67e8..71b42a5b2a 100644 --- a/tests/parsers/cytiva_biacore_t200_control/testdata/ED_Fig.6a_immobilization Her2-Her3.json +++ b/tests/parsers/cytiva_biacore_t200_control/testdata/ED_Fig.6a_immobilization Her2-Her3.json @@ -1373,7 +1373,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0314174107142857, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_60", "data source aggregate document": { @@ -1389,7 +1389,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00920758928571429, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_61", "data source aggregate document": { @@ -1405,7 +1405,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.106194196428571, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_62", "data source aggregate document": { @@ -1421,7 +1421,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0124441964285714, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_63", "data source aggregate document": { @@ -1437,7 +1437,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0708705357142857, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_64", "data source aggregate document": { @@ -1453,7 +1453,7 @@ "calculated data name": "Slope", "calculated result": { "value": -1.79754464285714, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_65", "data source aggregate document": { @@ -1469,7 +1469,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0753348214285714, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_66", "data source aggregate document": { @@ -1485,7 +1485,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0103236607142857, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_67", "data source aggregate document": { @@ -1501,7 +1501,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0259486607142857, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_68", "data source aggregate document": { @@ -1517,7 +1517,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0961495535714286, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_69", "data source aggregate document": { @@ -1533,7 +1533,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00390625, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_70", "data source aggregate document": { @@ -1549,7 +1549,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0478236607142857, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_71", "data source aggregate document": { @@ -1565,7 +1565,7 @@ "calculated data name": "Slope", "calculated result": { "value": -1.766796875, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_72", "data source aggregate document": { @@ -1581,7 +1581,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.080078125, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_73", "data source aggregate document": { @@ -1825,7 +1825,7 @@ "file name": "ED_Fig.6a_immobilization Her2-Her3.blr", "UNC path": "tests/parsers/cytiva_biacore_t200_control/testdata/ED_Fig.6a_immobilization Her2-Her3.blr", "ASM converter name": "allotropy_cytiva_biacore_t200_control", - "ASM converter version": "0.1.79", + "ASM converter version": "0.1.105", "software name": "Biacore T200 Control Software", "software version": "2.0.1" }, diff --git a/tests/parsers/cytiva_biacore_t200_control/testdata/Fig.2c_NC_prongs hybridization.json b/tests/parsers/cytiva_biacore_t200_control/testdata/Fig.2c_NC_prongs hybridization.json index 7d35ec48f9..61bf82cd02 100644 --- a/tests/parsers/cytiva_biacore_t200_control/testdata/Fig.2c_NC_prongs hybridization.json +++ b/tests/parsers/cytiva_biacore_t200_control/testdata/Fig.2c_NC_prongs hybridization.json @@ -8403,7 +8403,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.026875351971085, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_351", "data source aggregate document": { @@ -8419,7 +8419,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.000742362603458013, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_352", "data source aggregate document": { @@ -8435,7 +8435,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00449837412204919, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_353", "data source aggregate document": { @@ -8451,7 +8451,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0500106038188876, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_354", "data source aggregate document": { @@ -8467,7 +8467,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.045457436947516, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_355", "data source aggregate document": { @@ -8483,7 +8483,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0293658129109123, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_356", "data source aggregate document": { @@ -8499,7 +8499,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0774886307380989, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_357", "data source aggregate document": { @@ -8515,7 +8515,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.045575860434846, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_358", "data source aggregate document": { @@ -8531,7 +8531,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0330811719566255, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_359", "data source aggregate document": { @@ -8547,7 +8547,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0115773465914418, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_360", "data source aggregate document": { @@ -8563,7 +8563,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00826498561073161, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_361", "data source aggregate document": { @@ -8579,7 +8579,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0142427909302865, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_362", "data source aggregate document": { @@ -8595,7 +8595,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0305588939140043, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_363", "data source aggregate document": { @@ -8611,7 +8611,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0223663743760497, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_364", "data source aggregate document": { @@ -8627,7 +8627,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00987167324842054, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_365", "data source aggregate document": { @@ -8643,7 +8643,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0419046940417026, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_366", "data source aggregate document": { @@ -8659,7 +8659,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0298557483426465, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_367", "data source aggregate document": { @@ -8675,7 +8675,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.02215178382019, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_368", "data source aggregate document": { @@ -8691,7 +8691,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00397518380976979, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_369", "data source aggregate document": { @@ -8707,7 +8707,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00355804271939049, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_370", "data source aggregate document": { @@ -8723,7 +8723,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00766225688698768, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_371", "data source aggregate document": { @@ -8739,7 +8739,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0286252139309286, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_372", "data source aggregate document": { @@ -8755,7 +8755,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0164363004566742, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_373", "data source aggregate document": { @@ -8771,7 +8771,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00362344993394588, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_374", "data source aggregate document": { @@ -8787,7 +8787,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0236413757847403, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_375", "data source aggregate document": { @@ -8803,7 +8803,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0200812904336346, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_376", "data source aggregate document": { @@ -8819,7 +8819,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00919835990851068, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_377", "data source aggregate document": { @@ -8835,7 +8835,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0138380221848394, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_378", "data source aggregate document": { @@ -8851,7 +8851,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00728047195387059, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_379", "data source aggregate document": { @@ -8867,7 +8867,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0192961673113569, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_380", "data source aggregate document": { @@ -8883,7 +8883,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00312676728417349, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_381", "data source aggregate document": { @@ -8899,7 +8899,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0193880788261521, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_382", "data source aggregate document": { @@ -8915,7 +8915,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0111884928421279, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_383", "data source aggregate document": { @@ -8931,7 +8931,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0162813630363021, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_384", "data source aggregate document": { @@ -8947,7 +8947,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.011735929401142, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_385", "data source aggregate document": { @@ -8963,7 +8963,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00939112127610596, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_386", "data source aggregate document": { @@ -8979,7 +8979,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00115596680211615, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_387", "data source aggregate document": { @@ -8995,7 +8995,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00526194972611596, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_388", "data source aggregate document": { @@ -9011,7 +9011,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00352446407401939, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_389", "data source aggregate document": { @@ -9027,7 +9027,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0049579324355996, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_390", "data source aggregate document": { @@ -9043,7 +9043,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0194676195734058, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_391", "data source aggregate document": { @@ -9059,7 +9059,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.000459561954504658, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_392", "data source aggregate document": { @@ -9075,7 +9075,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00327584776989683, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_393", "data source aggregate document": { @@ -9091,7 +9091,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0151391497300892, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_394", "data source aggregate document": { @@ -9107,7 +9107,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00255551911689007, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_395", "data source aggregate document": { @@ -9123,7 +9123,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0157823095501337, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_396", "data source aggregate document": { @@ -9139,7 +9139,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00364112056428912, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_397", "data source aggregate document": { @@ -9155,7 +9155,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0175851960304704, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_398", "data source aggregate document": { @@ -9171,7 +9171,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.000609799353766624, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_399", "data source aggregate document": { @@ -9187,7 +9187,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00474583181355445, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_400", "data source aggregate document": { @@ -9203,7 +9203,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00272200319233103, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_401", "data source aggregate document": { @@ -9219,7 +9219,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.015917029323967, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_402", "data source aggregate document": { @@ -9235,7 +9235,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00170213606496358, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_403", "data source aggregate document": { @@ -9251,7 +9251,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.019106053082941, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_404", "data source aggregate document": { @@ -9267,7 +9267,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0167685955683938, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_405", "data source aggregate document": { @@ -9283,7 +9283,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0012549506550863, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_406", "data source aggregate document": { @@ -9299,7 +9299,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0178821441166262, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_407", "data source aggregate document": { @@ -9315,7 +9315,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00297829511565646, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_408", "data source aggregate document": { @@ -9331,7 +9331,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00499328739793128, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_409", "data source aggregate document": { @@ -9347,7 +9347,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0116427436749602, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_410", "data source aggregate document": { @@ -9363,7 +9363,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0193405237564105, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_411", "data source aggregate document": { @@ -9379,7 +9379,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00552177909693887, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_412", "data source aggregate document": { @@ -9395,7 +9395,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0040742272043369, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_413", "data source aggregate document": { @@ -9411,7 +9411,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0115667417010977, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_414", "data source aggregate document": { @@ -9427,7 +9427,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.000300478061610588, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_415", "data source aggregate document": { @@ -9443,7 +9443,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0223398584055243, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_416", "data source aggregate document": { @@ -9459,7 +9459,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.000600961668824746, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_417", "data source aggregate document": { @@ -9475,7 +9475,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00841346377919929, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_418", "data source aggregate document": { @@ -9491,7 +9491,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.000662822581785325, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_419", "data source aggregate document": { @@ -9507,7 +9507,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0117462013037578, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_420", "data source aggregate document": { @@ -9523,7 +9523,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00767286973818203, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_421", "data source aggregate document": { @@ -9539,7 +9539,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0225136336064579, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_422", "data source aggregate document": { @@ -9555,7 +9555,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00827205785308466, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_423", "data source aggregate document": { @@ -9571,7 +9571,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0110559248354183, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_424", "data source aggregate document": { @@ -9587,7 +9587,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0106405556720111, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_425", "data source aggregate document": { @@ -9603,7 +9603,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00275735235413624, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_426", "data source aggregate document": { @@ -9619,7 +9619,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0553679971096405, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_427", "data source aggregate document": { @@ -9635,7 +9635,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.032285775720333, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_428", "data source aggregate document": { @@ -9651,7 +9651,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0113952907635032, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_429", "data source aggregate document": { @@ -9667,7 +9667,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0439055412695007, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_430", "data source aggregate document": { @@ -9683,7 +9683,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0425581316705682, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_431", "data source aggregate document": { @@ -10999,7 +10999,7 @@ "file name": "Fig.2c_NC_prongs hybridization.blr", "UNC path": "tests/parsers/cytiva_biacore_t200_control/testdata/Fig.2c_NC_prongs hybridization.blr", "ASM converter name": "allotropy_cytiva_biacore_t200_control", - "ASM converter version": "0.1.79", + "ASM converter version": "0.1.105", "software name": "Biacore T200 Control Software", "software version": "2.0.1" }, diff --git a/tests/parsers/cytiva_biacore_t200_control/testdata/Fig.4b_Her3 immobilization.json b/tests/parsers/cytiva_biacore_t200_control/testdata/Fig.4b_Her3 immobilization.json index 82b9277df7..05481c23ba 100644 --- a/tests/parsers/cytiva_biacore_t200_control/testdata/Fig.4b_Her3 immobilization.json +++ b/tests/parsers/cytiva_biacore_t200_control/testdata/Fig.4b_Her3 immobilization.json @@ -3002,7 +3002,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.199330357142857, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_131", "data source aggregate document": { @@ -3018,7 +3018,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0817522321428571, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_132", "data source aggregate document": { @@ -3034,7 +3034,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.813002232142857, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_133", "data source aggregate document": { @@ -3050,7 +3050,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.141852678571429, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_134", "data source aggregate document": { @@ -3066,7 +3066,7 @@ "calculated data name": "Slope", "calculated result": { "value": 1.68816964285714, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_135", "data source aggregate document": { @@ -3082,7 +3082,7 @@ "calculated data name": "Slope", "calculated result": { "value": -7.81941964285714, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_136", "data source aggregate document": { @@ -3098,7 +3098,7 @@ "calculated data name": "Slope", "calculated result": { "value": -3.08560267857143, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_137", "data source aggregate document": { @@ -3114,7 +3114,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.84140625, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_138", "data source aggregate document": { @@ -3130,7 +3130,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.139732142857143, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_139", "data source aggregate document": { @@ -3146,7 +3146,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00111607142857143, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_140", "data source aggregate document": { @@ -3162,7 +3162,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.210491071428571, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_141", "data source aggregate document": { @@ -3178,7 +3178,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.629352678571429, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_142", "data source aggregate document": { @@ -3194,7 +3194,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0569754464285714, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_143", "data source aggregate document": { @@ -3210,7 +3210,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.233482142857143, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_144", "data source aggregate document": { @@ -3226,7 +3226,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.634988839285714, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_145", "data source aggregate document": { @@ -3242,7 +3242,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.303962053571429, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_146", "data source aggregate document": { @@ -3258,7 +3258,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.263839285714286, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_147", "data source aggregate document": { @@ -3274,7 +3274,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.677734375, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_148", "data source aggregate document": { @@ -3290,7 +3290,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.129854910714286, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_149", "data source aggregate document": { @@ -3306,7 +3306,7 @@ "calculated data name": "Slope", "calculated result": { "value": 2.61104910714286, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_150", "data source aggregate document": { @@ -3322,7 +3322,7 @@ "calculated data name": "Slope", "calculated result": { "value": -6.81741071428571, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_151", "data source aggregate document": { @@ -3338,7 +3338,7 @@ "calculated data name": "Slope", "calculated result": { "value": -2.84029017857143, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_152", "data source aggregate document": { @@ -3354,7 +3354,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.782254464285714, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_153", "data source aggregate document": { @@ -3370,7 +3370,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0626674107142857, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_154", "data source aggregate document": { @@ -3386,7 +3386,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.00837053571428571, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_155", "data source aggregate document": { @@ -3402,7 +3402,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.259207589285714, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_156", "data source aggregate document": { @@ -3418,7 +3418,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.747767857142857, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_157", "data source aggregate document": { @@ -3434,7 +3434,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0809151785714286, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_158", "data source aggregate document": { @@ -3450,7 +3450,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.228125, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_159", "data source aggregate document": { @@ -3466,7 +3466,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.640848214285714, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_160", "data source aggregate document": { @@ -3966,7 +3966,7 @@ "file name": "Fig.4b_Her3 immobilization.blr", "UNC path": "tests/parsers/cytiva_biacore_t200_control/testdata/Fig.4b_Her3 immobilization.blr", "ASM converter name": "allotropy_cytiva_biacore_t200_control", - "ASM converter version": "0.1.82", + "ASM converter version": "0.1.105", "software name": "Biacore T200 Control Software", "software version": "2.0.1" }, diff --git a/tests/parsers/cytiva_biacore_t200_control/testdata/Fig.5a_HD_immobilization Her2-Her3.json b/tests/parsers/cytiva_biacore_t200_control/testdata/Fig.5a_HD_immobilization Her2-Her3.json index 542aabd9ae..19cc6de704 100644 --- a/tests/parsers/cytiva_biacore_t200_control/testdata/Fig.5a_HD_immobilization Her2-Her3.json +++ b/tests/parsers/cytiva_biacore_t200_control/testdata/Fig.5a_HD_immobilization Her2-Her3.json @@ -1446,7 +1446,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0177455357142857, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_64", "data source aggregate document": { @@ -1462,7 +1462,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0346540178571429, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_65", "data source aggregate document": { @@ -1478,7 +1478,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0926339285714286, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_66", "data source aggregate document": { @@ -1494,7 +1494,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00390625, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_67", "data source aggregate document": { @@ -1510,7 +1510,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0729352678571429, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_68", "data source aggregate document": { @@ -1526,7 +1526,7 @@ "calculated data name": "Slope", "calculated result": { "value": -5.29988839285714, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_69", "data source aggregate document": { @@ -1542,7 +1542,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.199274553571429, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_70", "data source aggregate document": { @@ -1558,7 +1558,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.0111049107142857, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_71", "data source aggregate document": { @@ -1574,7 +1574,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.0416294642857143, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_72", "data source aggregate document": { @@ -1590,7 +1590,7 @@ "calculated data name": "Slope", "calculated result": { "value": -5.25792410714286, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_73", "data source aggregate document": { @@ -1606,7 +1606,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.171875, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_74", "data source aggregate document": { @@ -1622,7 +1622,7 @@ "calculated data name": "Slope", "calculated result": { "value": 0.00223214285714286, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_75", "data source aggregate document": { @@ -1638,7 +1638,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.055078125, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_76", "data source aggregate document": { @@ -1654,7 +1654,7 @@ "calculated data name": "Slope", "calculated result": { "value": -5.14095982142857, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_77", "data source aggregate document": { @@ -1670,7 +1670,7 @@ "calculated data name": "Slope", "calculated result": { "value": -0.163783482142857, - "unit": "(unitless)" + "unit": "RU/s" }, "calculated data identifier": "CYTIVA_BIACORE_T200_CONTROL_TEST_ID_78", "data source aggregate document": { @@ -1930,7 +1930,7 @@ "file name": "Fig.5a_HD_immobilization Her2-Her3.blr", "UNC path": "tests/parsers/cytiva_biacore_t200_control/testdata/Fig.5a_HD_immobilization Her2-Her3.blr", "ASM converter name": "allotropy_cytiva_biacore_t200_control", - "ASM converter version": "0.1.79", + "ASM converter version": "0.1.105", "software name": "Biacore T200 Control Software", "software version": "2.0.1" },