https://github.com/adaptinfer/go_translator
Simple utility functions for handling GO Terms in Python.
https://github.com/adaptinfer/go_translator
gene-ontology
Last synced: 2 months ago
JSON representation
Simple utility functions for handling GO Terms in Python.
- Host: GitHub
- URL: https://github.com/adaptinfer/go_translator
- Owner: AdaptInfer
- License: mit
- Created: 2019-07-07T21:22:00.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-07-07T21:32:08.000Z (over 6 years ago)
- Last Synced: 2025-06-04T10:53:29.008Z (4 months ago)
- Topics: gene-ontology
- Language: Python
- Size: 4.2 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GO_Translator
Simple utility functions for handling GO Terms in Python.Provides dictionaries for the GO Terms in the go.obo file which allow simple lookups to GO Terms.
See the Term class definition in `GO_Translator/__init__.py` to view available datafields for each GO term.## Usage
### Install
```bash
git clone https://github.com/blengerich/GO_Translator
cd GO_Translator
pip install -e .
```### Use the Available Dicts in Python
```python
>>> from GO_Translator import *
>>> go_terms_by_id
>>> go_terms_by_name
```