Bionty.
Project description
Bionty
Public biological ontologies for data scientists: look up, search, inspect, validate, and standardize terms.
To make it easy to customize and extend ontologies in a simple database backend, Bionty plugs into LaminDB: see this guide.
Entities
Gene
- Ensembl, NCBI GeneProtein
- UniprotOrganism
- Ensembl Species. NCBI TaxonomyCellLine
- Cell Line OntologyCellType
- Cell OntologyCellMarker
- CellMarkerTissue
- UberonDisease
- Mondo, Human DiseasePhenotype
- Human Phenotype, Phecodes, PATO, Mammalian Phenotype, Zebrafish PhenotypePathway
- Gene Ontology, Pathway OntologyExperimentalFactor
- Experimental Factor OntologyDevelopmentalStage
- Human Developmental Stages, Mouse Developmental StagesDrug
- Drug OntologyEthnicity
- Human Ancestry OntologyBFXPipeline
- largely based on nf-coreBioSample
- NCBI BioSample attributes
Check out sources.yaml for details.
Didn't see your favorite source or version? Bionty is extendable!
Installation
Bionty is a Python package available for
pip install bionty
Usage overview & quickstart
import bionty as bt
Look up terms with auto-complete
lookup = bt.ExperimentalFactor().lookup()
# access via Python-friendly keys
lookup.single_cell_rna_sequencing
# access via dictionary
lookup_dict = lookup.dict()
lookup_dict["single-cell RNA sequencing"]
Search ontology terms
celltype_bionty = bt.CellType()
# Free text search against a field
celltype_bionty.search("gamma delta T cell")
Validate, inspect & standardize terms
gene_bionty = bt.Gene()
# Validate against a field of reference
gene_bionty.validate(["A1BG", "FANCD1"], gene_bionty.symbol)
# Run full inspection on the gene symbols
gene_bionty.inspect(["A1BG", "FANCD1"], gene_bionty.symbol)
# Convert synonyms to standardized gene symbols
gene_bionty.standardize(["A1BG", "FANCD1"])
Access a reference DataFrame
# Reference table of the human genes
df = bt.Gene(organism="human").df()
Track ontology sources
# Display currently used sources
bt.display_currently_used_sources()
# Display all managed sources
bt.display_available_sources()
# Local yaml file specifying all managed sources
bt.LOCAL_SOURCES
# Access to the Mondo ontology
disease = bt.Disease(source="mondo")
# Access to the Human Disease ontology
disease = bt.Disease(source="doid", version="2023-01-30")
Documentation
Read the docs.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
bionty-0.34.1.tar.gz
(62.8 kB
view details)
Built Distribution
File details
Details for the file bionty-0.34.1.tar.gz
.
File metadata
- Download URL: bionty-0.34.1.tar.gz
- Upload date:
- Size: 62.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.31.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab468ea868d99771a4863de33040c69da326e8f6ca35ef15ceff7ea844f6f4e8 |
|
MD5 | c13d4f457ca976867f84e594117fcd14 |
|
BLAKE2b-256 | c1f0ead548846704528b0b08d3dc004cb82ef6023e710bcf9f2eac1ec658ad90 |
Provenance
File details
Details for the file bionty-0.34.1-py2.py3-none-any.whl
.
File metadata
- Download URL: bionty-0.34.1-py2.py3-none-any.whl
- Upload date:
- Size: 39.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.31.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d956b5c29925f103cebc895c0a67ff8c0c2df6c0a2717628051d2c17ddd8629 |
|
MD5 | 26a63235b0d896587566e457b9fd7df4 |
|
BLAKE2b-256 | 13e485871b84f5919bb25e88a8381e582b5ebb0b58e5ce7bb70d2e0afd6866b4 |