bioontologies


Namebioontologies JSON
Version 0.4.3 PyPI version JSON
download
home_pagehttps://github.com/biopragmatics/bioontologies
SummaryTools for biomedical ontologies.
upload_time2024-03-13 15:29:49
maintainerCharles Tapley Hoyt
docs_urlNone
authorCharles Tapley Hoyt
requires_python>=3.8
licenseMIT
keywords snekpack cookiecutter ontologies obo foundry knowledge graphs biomedicine biology systems biology networks biology
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <!--
<p align="center">
  <img src="https://github.com/biopragmatics/bioontologies/raw/main/docs/source/logo.png" height="150">
</p>
-->

<h1 align="center">
  Bioontologies
</h1>

<p align="center">
    <a href="https://github.com/biopragmatics/bioontologies/actions?query=workflow%3ATests">
        <img alt="Tests" src="https://github.com/biopragmatics/bioontologies/workflows/Tests/badge.svg" />
    </a>
    <a href="https://pypi.org/project/bioontologies">
        <img alt="PyPI" src="https://img.shields.io/pypi/v/bioontologies" />
    </a>
    <a href="https://pypi.org/project/bioontologies">
        <img alt="PyPI - Python Version" src="https://img.shields.io/pypi/pyversions/bioontologies" />
    </a>
    <a href="https://github.com/biopragmatics/bioontologies/blob/main/LICENSE">
        <img alt="PyPI - License" src="https://img.shields.io/pypi/l/bioontologies" />
    </a>
    <a href='https://bioontologies.readthedocs.io/en/latest/?badge=latest'>
        <img src='https://readthedocs.org/projects/bioontologies/badge/?version=latest' alt='Documentation Status' />
    </a>
    <a href="https://codecov.io/gh/biopragmatics/bioontologies/branch/main">
        <img src="https://codecov.io/gh/biopragmatics/bioontologies/branch/main/graph/badge.svg" alt="Codecov status" />
    </a>  
    <a href="https://github.com/cthoyt/cookiecutter-python-package">
        <img alt="Cookiecutter template from @cthoyt" src="https://img.shields.io/badge/Cookiecutter-snekpack-blue" /> 
    </a>
    <a href='https://github.com/psf/black'>
        <img src='https://img.shields.io/badge/code%20style-black-000000.svg' alt='Code style: black' />
    </a>
    <a href="https://github.com/biopragmatics/bioontologies/blob/main/.github/CODE_OF_CONDUCT.md">
        <img src="https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg" alt="Contributor Covenant"/>
    </a>
</p>

Tools for biomedical ontologies.

## 💪 Getting Started

This package lets you get OBO Graphs from ontologies based on their OWL
files, OBO files, or [Bioregistry](https://bioregistry.io) prefixes. Internally,
it uses [ROBOT](https://robot.obolibrary.org) to convert from these formats
to [OBO Graph JSON](https://github.com/geneontology/obographs).

```python
import bioontologies

# Get an ontology and convert to OBO Graph object via an OWL IRI
owl_iri = "http://purl.obolibrary.org/obo/go.owl"
parse_results = bioontologies.convert_to_obograph(owl_iri)

# Get an ontology and convert to OBO Graph object via an OBO IRI
obo_iri = "http://purl.obolibrary.org/obo/go.obo"
parse_results = bioontologies.convert_to_obograph(obo_iri)

# Get an ontology by its Bioregistry prefix
parse_results = bioontologies.get_obograph_by_prefix("go")
go_graph_document = parse_results.graph_document
```

## 🚀 Installation

The most recent release can be installed from
[PyPI](https://pypi.org/project/bioontologies/) with:

```bash
$ pip install bioontologies
```


The most recent code and data can be installed directly from GitHub with:

```bash
$ pip install git+https://github.com/biopragmatics/bioontologies.git
```

## 👐 Contributing

Contributions, whether filing an issue, making a pull request, or forking, are appreciated. See
[CONTRIBUTING.md](https://github.com/biopragmatics/bioontologies/blob/master/.github/CONTRIBUTING.md) for more information on getting involved.

## 👋 Attribution

### ⚖️ License

The code in this package is licensed under the MIT License.

<!--
### 📖 Citation

Citation goes here!
-->

### 🎁 Support

The Bioregistry was developed by the [INDRA Lab](https://indralab.github.io), a part of the
[Laboratory of Systems Pharmacology](https://hits.harvard.edu/the-program/laboratory-of-systems-pharmacology/about/)
and the [Harvard Program in Therapeutic Science (HiTS)](https://hits.harvard.edu)
at [Harvard Medical School](https://hms.harvard.edu/).

### 💰 Funding

The development of this package is funded by the DARPA Young Faculty Award W911NF2010255 (PI: Benjamin M. Gyori).

### 🍪 Cookiecutter

This package was created with [@audreyfeldroy](https://github.com/audreyfeldroy)'s
[cookiecutter](https://github.com/cookiecutter/cookiecutter) package using [@cthoyt](https://github.com/cthoyt)'s
[cookiecutter-snekpack](https://github.com/cthoyt/cookiecutter-snekpack) template.

## 🛠️ For Developers

<details>
  <summary>See developer instructions</summary>


The final section of the README is for if you want to get involved by making a code contribution.

### Development Installation

To install in development mode, use the following:

```bash
$ git clone git+https://github.com/biopragmatics/bioontologies.git
$ cd bioontologies
$ pip install -e .
```

### 🥼 Testing

After cloning the repository and installing `tox` with `pip install tox`, the unit tests in the `tests/` folder can be
run reproducibly with:

```shell
$ tox
```

Additionally, these tests are automatically re-run with each commit in a [GitHub Action](https://github.com/biopragmatics/bioontologies/actions?query=workflow%3ATests).

### 📖 Building the Documentation

The documentation can be built locally using the following:

```shell
$ git clone git+https://github.com/biopragmatics/bioontologies.git
$ cd bioontologies
$ tox -e docs
$ open docs/build/html/index.html
``` 

The documentation automatically installs the package as well as the `docs`
extra specified in the [`setup.cfg`](setup.cfg). `sphinx` plugins
like `texext` can be added there. Additionally, they need to be added to the
`extensions` list in [`docs/source/conf.py`](docs/source/conf.py).

### 📦 Making a Release

After installing the package in development mode and installing
`tox` with `pip install tox`, the commands for making a new release are contained within the `finish` environment
in `tox.ini`. Run the following from the shell:

```shell
$ tox -e finish
```

This script does the following:

1. Uses [Bump2Version](https://github.com/c4urself/bump2version) to switch the version number in the `setup.cfg`,
   `src/bioontologies/version.py`, and [`docs/source/conf.py`](docs/source/conf.py) to not have the `-dev` suffix
2. Packages the code in both a tar archive and a wheel using [`build`](https://github.com/pypa/build)
3. Uploads to PyPI using [`twine`](https://github.com/pypa/twine). Be sure to have a `.pypirc` file configured to avoid the need for manual input at this
   step
4. Push to GitHub. You'll need to make a release going with the commit where the version was bumped.
5. Bump the version to the next patch. If you made big changes and want to bump the version by minor, you can
   use `tox -e bumpversion minor` after.
</details>

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/biopragmatics/bioontologies",
    "name": "bioontologies",
    "maintainer": "Charles Tapley Hoyt",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "cthoyt@gmail.com",
    "keywords": "snekpack,cookiecutter,ontologies,OBO Foundry,knowledge graphs,biomedicine,biology,systems biology,networks biology",
    "author": "Charles Tapley Hoyt",
    "author_email": "cthoyt@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/d4/31/bcd1886cbb5061c46d807b7cac3995dbc1aefc8b0ae46811011f78f53ea5/bioontologies-0.4.3.tar.gz",
    "platform": null,
    "description": "<!--\n<p align=\"center\">\n  <img src=\"https://github.com/biopragmatics/bioontologies/raw/main/docs/source/logo.png\" height=\"150\">\n</p>\n-->\n\n<h1 align=\"center\">\n  Bioontologies\n</h1>\n\n<p align=\"center\">\n    <a href=\"https://github.com/biopragmatics/bioontologies/actions?query=workflow%3ATests\">\n        <img alt=\"Tests\" src=\"https://github.com/biopragmatics/bioontologies/workflows/Tests/badge.svg\" />\n    </a>\n    <a href=\"https://pypi.org/project/bioontologies\">\n        <img alt=\"PyPI\" src=\"https://img.shields.io/pypi/v/bioontologies\" />\n    </a>\n    <a href=\"https://pypi.org/project/bioontologies\">\n        <img alt=\"PyPI - Python Version\" src=\"https://img.shields.io/pypi/pyversions/bioontologies\" />\n    </a>\n    <a href=\"https://github.com/biopragmatics/bioontologies/blob/main/LICENSE\">\n        <img alt=\"PyPI - License\" src=\"https://img.shields.io/pypi/l/bioontologies\" />\n    </a>\n    <a href='https://bioontologies.readthedocs.io/en/latest/?badge=latest'>\n        <img src='https://readthedocs.org/projects/bioontologies/badge/?version=latest' alt='Documentation Status' />\n    </a>\n    <a href=\"https://codecov.io/gh/biopragmatics/bioontologies/branch/main\">\n        <img src=\"https://codecov.io/gh/biopragmatics/bioontologies/branch/main/graph/badge.svg\" alt=\"Codecov status\" />\n    </a>  \n    <a href=\"https://github.com/cthoyt/cookiecutter-python-package\">\n        <img alt=\"Cookiecutter template from @cthoyt\" src=\"https://img.shields.io/badge/Cookiecutter-snekpack-blue\" /> \n    </a>\n    <a href='https://github.com/psf/black'>\n        <img src='https://img.shields.io/badge/code%20style-black-000000.svg' alt='Code style: black' />\n    </a>\n    <a href=\"https://github.com/biopragmatics/bioontologies/blob/main/.github/CODE_OF_CONDUCT.md\">\n        <img src=\"https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg\" alt=\"Contributor Covenant\"/>\n    </a>\n</p>\n\nTools for biomedical ontologies.\n\n## \ud83d\udcaa Getting Started\n\nThis package lets you get OBO Graphs from ontologies based on their OWL\nfiles, OBO files, or [Bioregistry](https://bioregistry.io) prefixes. Internally,\nit uses [ROBOT](https://robot.obolibrary.org) to convert from these formats\nto [OBO Graph JSON](https://github.com/geneontology/obographs).\n\n```python\nimport bioontologies\n\n# Get an ontology and convert to OBO Graph object via an OWL IRI\nowl_iri = \"http://purl.obolibrary.org/obo/go.owl\"\nparse_results = bioontologies.convert_to_obograph(owl_iri)\n\n# Get an ontology and convert to OBO Graph object via an OBO IRI\nobo_iri = \"http://purl.obolibrary.org/obo/go.obo\"\nparse_results = bioontologies.convert_to_obograph(obo_iri)\n\n# Get an ontology by its Bioregistry prefix\nparse_results = bioontologies.get_obograph_by_prefix(\"go\")\ngo_graph_document = parse_results.graph_document\n```\n\n## \ud83d\ude80 Installation\n\nThe most recent release can be installed from\n[PyPI](https://pypi.org/project/bioontologies/) with:\n\n```bash\n$ pip install bioontologies\n```\n\n\nThe most recent code and data can be installed directly from GitHub with:\n\n```bash\n$ pip install git+https://github.com/biopragmatics/bioontologies.git\n```\n\n## \ud83d\udc50 Contributing\n\nContributions, whether filing an issue, making a pull request, or forking, are appreciated. See\n[CONTRIBUTING.md](https://github.com/biopragmatics/bioontologies/blob/master/.github/CONTRIBUTING.md) for more information on getting involved.\n\n## \ud83d\udc4b Attribution\n\n### \u2696\ufe0f License\n\nThe code in this package is licensed under the MIT License.\n\n<!--\n### \ud83d\udcd6 Citation\n\nCitation goes here!\n-->\n\n### \ud83c\udf81 Support\n\nThe Bioregistry was developed by the [INDRA Lab](https://indralab.github.io), a part of the\n[Laboratory of Systems Pharmacology](https://hits.harvard.edu/the-program/laboratory-of-systems-pharmacology/about/)\nand the [Harvard Program in Therapeutic Science (HiTS)](https://hits.harvard.edu)\nat [Harvard Medical School](https://hms.harvard.edu/).\n\n### \ud83d\udcb0 Funding\n\nThe development of this package is funded by the DARPA Young Faculty Award W911NF2010255 (PI: Benjamin M. Gyori).\n\n### \ud83c\udf6a Cookiecutter\n\nThis package was created with [@audreyfeldroy](https://github.com/audreyfeldroy)'s\n[cookiecutter](https://github.com/cookiecutter/cookiecutter) package using [@cthoyt](https://github.com/cthoyt)'s\n[cookiecutter-snekpack](https://github.com/cthoyt/cookiecutter-snekpack) template.\n\n## \ud83d\udee0\ufe0f For Developers\n\n<details>\n  <summary>See developer instructions</summary>\n\n\nThe final section of the README is for if you want to get involved by making a code contribution.\n\n### Development Installation\n\nTo install in development mode, use the following:\n\n```bash\n$ git clone git+https://github.com/biopragmatics/bioontologies.git\n$ cd bioontologies\n$ pip install -e .\n```\n\n### \ud83e\udd7c Testing\n\nAfter cloning the repository and installing `tox` with `pip install tox`, the unit tests in the `tests/` folder can be\nrun reproducibly with:\n\n```shell\n$ tox\n```\n\nAdditionally, these tests are automatically re-run with each commit in a [GitHub Action](https://github.com/biopragmatics/bioontologies/actions?query=workflow%3ATests).\n\n### \ud83d\udcd6 Building the Documentation\n\nThe documentation can be built locally using the following:\n\n```shell\n$ git clone git+https://github.com/biopragmatics/bioontologies.git\n$ cd bioontologies\n$ tox -e docs\n$ open docs/build/html/index.html\n``` \n\nThe documentation automatically installs the package as well as the `docs`\nextra specified in the [`setup.cfg`](setup.cfg). `sphinx` plugins\nlike `texext` can be added there. Additionally, they need to be added to the\n`extensions` list in [`docs/source/conf.py`](docs/source/conf.py).\n\n### \ud83d\udce6 Making a Release\n\nAfter installing the package in development mode and installing\n`tox` with `pip install tox`, the commands for making a new release are contained within the `finish` environment\nin `tox.ini`. Run the following from the shell:\n\n```shell\n$ tox -e finish\n```\n\nThis script does the following:\n\n1. Uses [Bump2Version](https://github.com/c4urself/bump2version) to switch the version number in the `setup.cfg`,\n   `src/bioontologies/version.py`, and [`docs/source/conf.py`](docs/source/conf.py) to not have the `-dev` suffix\n2. Packages the code in both a tar archive and a wheel using [`build`](https://github.com/pypa/build)\n3. Uploads to PyPI using [`twine`](https://github.com/pypa/twine). Be sure to have a `.pypirc` file configured to avoid the need for manual input at this\n   step\n4. Push to GitHub. You'll need to make a release going with the commit where the version was bumped.\n5. Bump the version to the next patch. If you made big changes and want to bump the version by minor, you can\n   use `tox -e bumpversion minor` after.\n</details>\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Tools for biomedical ontologies.",
    "version": "0.4.3",
    "project_urls": {
        "Bug Tracker": "https://github.com/biopragmatics/bioontologies/issues",
        "Download": "https://github.com/biopragmatics/bioontologies/releases",
        "Homepage": "https://github.com/biopragmatics/bioontologies",
        "Source Code": "https://github.com/biopragmatics/bioontologies"
    },
    "split_keywords": [
        "snekpack",
        "cookiecutter",
        "ontologies",
        "obo foundry",
        "knowledge graphs",
        "biomedicine",
        "biology",
        "systems biology",
        "networks biology"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2fcc35aff131dc4998f1742b2da977599d721bf7998a32a35dd103598e4c55ea",
                "md5": "c545f4b269bddaaf704f28ec7ffebf81",
                "sha256": "bab5d2f9a56adfba3c2780301194d476df34ee4c783572580209b893bb5e0816"
            },
            "downloads": -1,
            "filename": "bioontologies-0.4.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c545f4b269bddaaf704f28ec7ffebf81",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 43808,
            "upload_time": "2024-03-13T15:29:47",
            "upload_time_iso_8601": "2024-03-13T15:29:47.821018Z",
            "url": "https://files.pythonhosted.org/packages/2f/cc/35aff131dc4998f1742b2da977599d721bf7998a32a35dd103598e4c55ea/bioontologies-0.4.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d431bcd1886cbb5061c46d807b7cac3995dbc1aefc8b0ae46811011f78f53ea5",
                "md5": "5d4dc325e38b6f44db1e7aaa7cdd7cd8",
                "sha256": "9fe6ef148aa9be70bcd0bb58a262a4c911f920b4011bcb97966293598c39a73c"
            },
            "downloads": -1,
            "filename": "bioontologies-0.4.3.tar.gz",
            "has_sig": false,
            "md5_digest": "5d4dc325e38b6f44db1e7aaa7cdd7cd8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 47626,
            "upload_time": "2024-03-13T15:29:49",
            "upload_time_iso_8601": "2024-03-13T15:29:49.642428Z",
            "url": "https://files.pythonhosted.org/packages/d4/31/bcd1886cbb5061c46d807b7cac3995dbc1aefc8b0ae46811011f78f53ea5/bioontologies-0.4.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-13 15:29:49",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "biopragmatics",
    "github_project": "bioontologies",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "bioontologies"
}
        
Elapsed time: 0.20390s