cellxgene_ontology_guide
cellxgene-ontology-guide
A Python package to help with ontology term mapping in for projects in the cellxgene ecosystem.
Installation
pip install cellxgene-ontology-guide
Notebooks
Notebooks on how to use the ontology guide can be found in the notebooks directory of the repository.
Changelog
1.6.0-alpha (2025-03-05)
Features
- pinned ontologies for schema 5.3.0 (#275) (cd6a15e)
- set up new github workflow for only ontologies that have changed (#264) (45d0fce)
Misc
1.5.0-alpha (2025-02-13)
Features
1.4.2 (2025-02-06)
BugFixes
1.4.1 (2025-01-28)
BugFixes
1.4.0 (2025-01-28)
Features
1.3.1 (2024-11-21)
Features
BugFixes
1.3.0 (2024-11-14)
Features
- query cross-ontology terms imported into a supported ontology (#232) (2e1a834)
- update EFO to 3.71.0 (#242) (7a92c0f)
Misc
1.2.0 (2024-09-04)
Features
Misc
1.1.0 (2024-07-08)
Features
1.0.0 (2024-05-15)
Features
Misc
- release 1.0.0 (60eef67)
0.8.0 (2024-04-15)
Features
0.7.1 (2024-04-12)
BugFixes
0.7.0 (2024-04-11)
Features
Misc
BugFixes
- update notebooks (96c7213)
0.6.1 (2024-04-10)
BugFixes
- Preserve order of high_level_terms when matching against an input curated list of terms (#189) (8dca5f3)
0.6.0 (2024-04-09)
Features
0.5.0 (2024-04-09)
Features
- add term label to OntologyNode (#182) (326185c)
- fetch ontology term descriptions, if available (#181) (0120377)
Misc
- add doctesting to API (#176) (c0aec23)
- deprecate older version of cellxgene schema (#172) (186e762)
- move pytest configs to pyproject.toml (#175) (a90341b)
0.4.0 (2024-03-29)
Features
0.3.1 (2024-03-27)
Misc
BugFixes
- move get_ontology_download_url. (#152) (8365411)
- ontology_parser.py defaults to latest (#153) (5b94d6e)
0.3.0 (2024-03-25)
Features
0.2.0 (2024-03-25)
Features
Misc
- enable code coverage (#143) (c52c436)
- use trusted publisher to publish pypi package. (#137) (5fc917b)
BugFixes
0.1.2 (2024-03-18)
BugFixes
- update README.md for API (f606073)
0.1.1 (2024-03-18)
BugFixes
0.1.0 (2024-03-15)
Features
- add data to the python package (#87) (0eb6831)
- add is_valid_term_id method to OntologyParser (#115) (72c2073)
- include license file with python package (#85) (2be3d81)
- refactor ancestry mapping to include distance from descendant node + implement functions to support curated list term mapping (#96) (7fc3562)
- refer to ontology source filenames in ontology_info and return that in get_ontology_download_url (#106) (ff9d826)
- split all_ontology into individual files. (#93) (ead59e5)
- Support getting download link for ontology from source repo (#86) (fd55b76)
Misc
- automate testpypi releases (#118) (b5a1a66)
- clean-up ontology_parser single fetch and bulk fetch methods + account for acceptable non-ontology terms (#112) (2ef7435)
- deps-dev: bump semantic-version from 2.8.5 to 2.10.0 in /api/python (#98) (dfe0b39)
BugFixes
0.0.1 (2024-02-26)
Features
- Add API ontology querying module (68f3168)
- Add API ontology querying module (#39) (239ef2b)
- API: setup python library (211a099)
- API: setup python library (f60f897)
- API: Setup the library for development (1f7ce03)
- implement stubbed query functions (334deb5)
- set version regex for pyton api (3720dab)
Misc
BugFixes
- README.md (1eae21d)
1""" 2[](https://pypi.org/project/cellxgene-ontology-guide/) 3[](<(https://pypi.org/project/cellxgene-ontology-guide/)>) 4[](https://codecov.io/gh/chanzuckerberg/cellxgene-ontology-guide) 5 6[](./LICENSE) 7 8# cellxgene-ontology-guide 9A Python package to help with ontology term mapping in for projects in the [cellxgene](https://cellxgene.cziscience.com/) ecosystem. 10 11## Installation 12```bash 13pip install cellxgene-ontology-guide 14``` 15## Notebooks 16Notebooks on how to use the ontology guide can be found in the 17[notebooks directory](https://github.com/chanzuckerberg/cellxgene-ontology-guide/tree/main/api/python/notebooks) of the 18repository. 19.. include:: ../../CHANGELOG.md 20""" 21 22__version__ = "1.6.0" 23__all__ = ["curated_ontology_term_lists", "entities", "ontology_parser", "supported_versions"]