Skip to content

Commit 89b82b5

Browse files
committed
Fix typo in Aviti run id regex
1 parent 40a599e commit 89b82b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dataflow_transfer/run_classes/element_runs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class AVITIRun(ElementRun):
1919

2020
def __init__(self, run_dir, configuration):
2121
self.run_id_format = (
22-
r"^\d{8}_AV\d{6}_(A|BP)\d{10}$" # 20251007_AV242106_A2507535225
22+
r"^\d{8}_AV\d{6}_(A|B)\d{10}$" # 20251007_AV242106_A2507535225
2323
)
2424
super().__init__(run_dir, configuration)
2525
self.flowcell_id = self.run_id.split("_")[-1][1:] # 2507535225

0 commit comments

Comments
 (0)