diff --git a/src/cool_seq_tool/sources/mane_transcript_mappings.py b/src/cool_seq_tool/sources/mane_transcript_mappings.py index 03256f6..2f67c42 100644 --- a/src/cool_seq_tool/sources/mane_transcript_mappings.py +++ b/src/cool_seq_tool/sources/mane_transcript_mappings.py @@ -61,7 +61,9 @@ def get_gene_mane_data(self, gene_symbol: str) -> list[dict]: location information). The list is sorted so that a MANE Select entry comes first, followed by a MANE Plus Clinical entry, if available. """ - data = self.df.filter(pl.col("symbol") == gene_symbol.upper()) + data = self.df.filter( + pl.col("symbol").str.to_uppercase() == gene_symbol.upper() + ) if len(data) == 0: _logger.warning(