Cellular-Semantics / CL_KG

Building a Cell Ontology Knowledge-Base from data, and LLMs
Apache License 2.0
0 stars 0 forks source link

Implement Case-Insensitive Comparison for "Content" Field Filtering #11

Closed ubyndr closed 3 months ago

ubyndr commented 3 months ago

Description:

This pull request updates the data filtering logic to be case-insensitive when comparing the "Content" field to the string "cell types". Previously, the comparison was case-sensitive, which could potentially exclude valid entries that vary in capitalisation.

Changes made:

Adjusted the comparison operation using str.lower() to ensure that the "Content" field is compared in a case-insensitive manner. This enhancement ensures our data filtering is robust and inclusive of variations in text capitalization, enhancing the reliability of our data processing tasks.