Skip to content

Commit 976396f

Browse files
committed
use uuid for report point items to ensure uniquenes
1 parent c56be0a commit 976396f

2 files changed

Lines changed: 3488 additions & 3488 deletions

File tree

src/allotropy/parsers/cytiva_biacore_insight/cytiva_biacore_insight_structure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ class ReportPointData:
279279
@staticmethod
280280
def create(row: SeriesData) -> ReportPointData:
281281
return ReportPointData(
282-
identifier=f"Run{row[int, 'Run']}_Channel{row[int, 'Channel']}_Cycle{row[int, 'Cycle']}_FlowCell{row[str, 'Flow cell']}_Name{row[str, 'Name']}",
282+
identifier=random_uuid_str(),
283283
identifier_role=row[str, "Name"],
284284
absolute_resonance=row[float, "Absolute response (RU)"],
285285
time_setting=row[float, "Time (s)"],

0 commit comments

Comments
 (0)