Skip to content

Commit b4f3b10

Browse files
committed
Implementing total_clusters_raw similar to as total_clusters_pf
1 parent 6ed599b commit b4f3b10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projman_filler/interop_run_stats_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def _get_conversion_results(self) -> list:
131131
# These are the same for the lane across all reads
132132
total_clusters_pf = row['Reads Pf']
133133
# These must be summed
134-
total_clusters_raw += row['Reads']
134+
total_clusters_raw = row['Reads']
135135
lanes.append(Lane(l, total_clusters_raw, total_clusters_pf))
136136
return lanes
137137

0 commit comments

Comments
 (0)