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 6a2ac30 commit 33cd947Copy full SHA for 33cd947
ovrlpy/io.py
@@ -11,7 +11,7 @@ def _filter_genes(df: pl.DataFrame, remove_features: Collection[str]) -> pl.Data
11
df = (
12
df.lazy()
13
.with_columns(pl.col("gene").cast(pl.String))
14
- .filter(~pl.col("gene").str.contains(f"({remove_pattern})"))
+ .filter(~pl.col("gene").str.contains(remove_pattern))
15
.with_columns(pl.col("gene").cast(pl.Categorical))
16
.collect()
17
)
0 commit comments