We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e247c90 commit b7b51edCopy full SHA for b7b51ed
src/segger/data/parquet/_utils.py
@@ -357,7 +357,7 @@ def filter_transcripts(
357
mask = pd.Series(True, index=transcripts_df.index)
358
if filter_substrings is not None and label is not None:
359
mask &= ~transcripts_df[label].str.startswith(tuple(filter_substrings))
360
- if min_qv is not None and qv_column is not None:
+ if min_qv is not None and qv_column is not None and qv_column in transcripts_df.columns:
361
mask &= transcripts_df[qv_column].ge(min_qv)
362
return transcripts_df[mask]
363
0 commit comments