Bionty.
Project description
Bionty
Biological ontologies for data scientists: look up, search, inspect, and map terms.
To manage custom bio-registries along with public ontologies, see this LaminDB guide.
Entities
Gene
- Ensembl, NCBI GeneProtein
- UniprotSpecies
- NCBI Taxonomy, Ensembl SpeciesCellLine
- Cell Line OntologyCellType
- Cell OntologyCellMarker
- CellMarkerTissue
- UberonDisease
- Mondo, Human DiseasePhenotype
- Human Phenotype, Mammalian Phenotype, Zebrafish PhenotypePathway
- Gene Ontology, Pathway OntologyExperimentalFactor
- Experimental Factor OntologyDrug
- Drug OntologyBFXPipeline
- largely based on nf-core
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(species="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.30.2.tar.gz
(59.2 kB
view details)
Built Distribution
File details
Details for the file bionty-0.30.2.tar.gz
.
File metadata
- Download URL: bionty-0.30.2.tar.gz
- Upload date:
- Size: 59.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.31.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49ee2917e01e968eae6ea0614955ac5d202269307e7a16ec995d52bb4c1e5131 |
|
MD5 | 52ffaf8015b2899971f8071a730b09e4 |
|
BLAKE2b-256 | fa4dac2aff1a1006389512fda47b32872b0b6efcab28f0fc530a8b2a51e3d156 |
Provenance
File details
Details for the file bionty-0.30.2-py2.py3-none-any.whl
.
File metadata
- Download URL: bionty-0.30.2-py2.py3-none-any.whl
- Upload date:
- Size: 35.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.31.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4b11cae0d9c6a4e07a15965247c7e753387f29db0dcc6430d494aad0dcb29e57 |
|
MD5 | 9343dadf529f144fa9207f454a06ffc1 |
|
BLAKE2b-256 | 54480b82a51d48f2a730bc64d00ddbfe5f1e194c1ffa80eaabcb27f2c30cb170 |