cellxgene_ontology_guide

PyPI PyPI - Downloads codecov example workflow GitHub

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

  • additional species-specific ontologies for cxg 5.3 multispecies schema (#255) (64c32fe)

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

  • add test to ensure all supported ontologies are supported by COG API (#236) (56051f9)

1.2.0 (2024-09-04)

Features

  • bump CL, EFO, HsapDv, MmusDv, MONDO, UBERON ontology versions for CxG schema 5.2.0 (#217) (5bb43b9)

Misc

1.1.0 (2024-07-08)

Features

1.0.0 (2024-05-15)

Features

Misc

0.8.0 (2024-04-15)

Features

0.7.1 (2024-04-12)

BugFixes

0.7.0 (2024-04-11)

Features

Misc

BugFixes

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

  • add get_term_children and get_term_parents (#186) (dfcd2c2)

0.5.0 (2024-04-09)

Features

  • add term label to OntologyNode (#182) (326185c)
  • fetch ontology term descriptions, if available (#181) (0120377)

Misc

0.4.0 (2024-03-29)

Features

0.3.1 (2024-03-27)

Misc

BugFixes

0.3.0 (2024-03-25)

Features

0.2.0 (2024-03-25)

Features

Misc

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

  • release tsmith/release-assets (63b782d)
  • release tsmith/release-assets (#57) (6a6b02a)

BugFixes

 1"""
 2[![PyPI](https://img.shields.io/pypi/v/cellxgene-ontology-guide?label=pypi%20package)](https://pypi.org/project/cellxgene-ontology-guide/)
 3[![PyPI - Downloads](https://img.shields.io/pypi/dm/cellxgene-ontology-guide)](<(https://pypi.org/project/cellxgene-ontology-guide/)>)
 4[![codecov](https://codecov.io/gh/chanzuckerberg/cellxgene-ontology-guide/graph/badge.svg?token=ceXxNPx22I)](https://codecov.io/gh/chanzuckerberg/cellxgene-ontology-guide)
 5![example workflow](https://github.com/chanzuckerberg/cellxgene-ontology-guide/actions/workflows/push-tests.yml/badge.svg?branch=main)
 6[![GitHub](https://img.shields.io/github/license/chanzuckerberg/cellxgene-ontology-guide)](./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"]