@@ -338,24 +338,22 @@ def get_statistic_dimensions(analyte: str) -> list[StatisticDimension]:
338338 sample_identifier = count_data [str , "Sample" ]
339339 assay_bead_count = count_data [float , "Total Events" ]
340340
341- # Get unread keys after all keys have been read
342- count_data .get_unread ()
343-
344341 device_control_custom_info = {
345342 "ProtocolHeater" : header_row .get (str , "ProtocolHeater" ),
346343 "DDGate" : header_row .get (str , "DDGate" ),
347344 "SampleTimeout" : header_row .get (str , "SampleTimeout" ),
348345 "ProtocolAnalysis" : header_row .get (str , "ProtocolAnalysis" ),
349346 "ProtocolMicrosphere" : header_row .get (str , "ProtocolMicrosphere" ),
350- "PlateReadDirection" : header_row .get (str , "PlateReadDirection" ), # Pending
347+ "PlateReadDirection" : header_row .get (str , "PlateReadDirection" ),
351348 }
352349 sample_custom_info = {
353350 "BatchDescription" : header_row .get (str , "BatchDescription" ),
354- "PanelName" : header_row .get (str , "PanelName" ), # Pending
355- "BeadType" : header_row .get (str , "BeadType" ), # Pending
351+ "PanelName" : header_row .get (str , "PanelName" ),
352+ "BeadType" : header_row .get (str , "BeadType" ),
356353 }
357354
358355 # Get unread keys after all keys have been read
356+ count_data .get_unread ()
359357 header_row .get_unread (
360358 skip = {
361359 "Date" ,
0 commit comments