semra


Namesemra JSON
Version 0.0.8 PyPI version JSON
download
home_pagehttps://github.com/biopragmatics/semra
SummarySemantic mapping reasoner and assembler
upload_time2024-04-11 14:45:22
maintainerCharles Tapley Hoyt
docs_urlNone
authorCharles Tapley Hoyt
requires_python>=3.8
licenseMIT
keywords snekpack cookiecutter sssom semantic mappings ontology merging
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/semra/raw/main/docs/source/logo.png" height="150">
</p>

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

<p align="center">
    <a href="https://github.com/biopragmatics/semra/actions/workflows/tests.yml">
        <img alt="Tests" src="https://github.com/biopragmatics/semra/actions/workflows/tests.yml/badge.svg" /></a>
    <a href="https://pypi.org/project/semra">
        <img alt="PyPI" src="https://img.shields.io/pypi/v/semra" /></a>
    <a href="https://pypi.org/project/semra">
        <img alt="PyPI - Python Version" src="https://img.shields.io/pypi/pyversions/semra" /></a>
    <a href="https://github.com/biopragmatics/semra/blob/main/LICENSE">
        <img alt="PyPI - License" src="https://img.shields.io/pypi/l/semra" /></a>
    <a href='https://semra.readthedocs.io/en/latest/?badge=latest'>
        <img src='https://readthedocs.org/projects/semra/badge/?version=latest' alt='Documentation Status' /></a>
    <a href="https://codecov.io/gh/biopragmatics/semra/branch/main">
        <img src="https://codecov.io/gh/biopragmatics/semra/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/semra/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>

Semantic mapping reasoner and assembler

[![DOI](https://zenodo.org/badge/626870339.svg)](https://zenodo.org/badge/latestdoi/626870339)

This software provides:

1. An object model for semantic mappings (based on SSSOM)
2. Functionality for assembling and reasoning over
   semantic mappings at scale
3. A provenance model for automatically generated mappings
4. A confidence model granular at the curator-level,
   mapping set-level, and community feedback-level

## 🚀 Installation

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

```shell
pip install semra
```

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

```shell
pip install git+https://github.com/biopragmatics/semra.git
```

## 👐 Contributing

Contributions, whether filing an issue, making a pull request, or forking, are appreciated. See
[CONTRIBUTING.md](https://github.com/biopragmatics/semra/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

This project has been supported by the following organizations (in alphabetical order):

- [Harvard Program in Therapeutic Science - Laboratory of Systems Pharmacology](https://hits.harvard.edu/the-program/laboratory-of-systems-pharmacology/)

-->

<!--
### 💰 Funding

This project has been supported by the following grants:

| Funding Body                                             | Program                                                                                                                       | Grant           |
|----------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|-----------------|
| DARPA                                                    | [Automating Scientific Knowledge Extraction (ASKE)](https://www.darpa.mil/program/automating-scientific-knowledge-extraction) | HR00111990009   |
-->

### 🍪 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/semra.git
cd semra
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/semra/actions?query=workflow%3ATests).

### 📖 Building the Documentation

The documentation can be built locally using the following:

```shell
git clone git+https://github.com/biopragmatics/semra.git
cd semra
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).

The documentation can be deployed to [ReadTheDocs](https://readthedocs.io) using 
[this guide](https://docs.readthedocs.io/en/stable/intro/import-guide.html).
The [`.readthedocs.yml`](.readthedocs.yml) YAML file contains all the configuration you'll need.
You can also set up continuous integration on GitHub to check not only that
Sphinx can build the documentation in an isolated environment (i.e., with ``tox -e docs-test``)
but also that [ReadTheDocs can build it too](https://docs.readthedocs.io/en/stable/pull-requests.html).

### 📦 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/semra/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/semra",
    "name": "semra",
    "maintainer": "Charles Tapley Hoyt",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "cthoyt@gmail.com",
    "keywords": "snekpack, cookiecutter, sssom, semantic mappings, ontology merging",
    "author": "Charles Tapley Hoyt",
    "author_email": "cthoyt@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/c7/ad/bc00e8315c08e70c122c8da484c12ccb00764b3c0399aa1010cd7f11d620/semra-0.0.8.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n  <img src=\"https://github.com/biopragmatics/semra/raw/main/docs/source/logo.png\" height=\"150\">\n</p>\n\n<h1 align=\"center\">\n  SeMRA\n</h1>\n\n<p align=\"center\">\n    <a href=\"https://github.com/biopragmatics/semra/actions/workflows/tests.yml\">\n        <img alt=\"Tests\" src=\"https://github.com/biopragmatics/semra/actions/workflows/tests.yml/badge.svg\" /></a>\n    <a href=\"https://pypi.org/project/semra\">\n        <img alt=\"PyPI\" src=\"https://img.shields.io/pypi/v/semra\" /></a>\n    <a href=\"https://pypi.org/project/semra\">\n        <img alt=\"PyPI - Python Version\" src=\"https://img.shields.io/pypi/pyversions/semra\" /></a>\n    <a href=\"https://github.com/biopragmatics/semra/blob/main/LICENSE\">\n        <img alt=\"PyPI - License\" src=\"https://img.shields.io/pypi/l/semra\" /></a>\n    <a href='https://semra.readthedocs.io/en/latest/?badge=latest'>\n        <img src='https://readthedocs.org/projects/semra/badge/?version=latest' alt='Documentation Status' /></a>\n    <a href=\"https://codecov.io/gh/biopragmatics/semra/branch/main\">\n        <img src=\"https://codecov.io/gh/biopragmatics/semra/branch/main/graph/badge.svg\" alt=\"Codecov status\" /></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\" /></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' /></a>\n    <a href=\"https://github.com/biopragmatics/semra/blob/main/.github/CODE_OF_CONDUCT.md\">\n        <img src=\"https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg\" alt=\"Contributor Covenant\"/></a>\n</p>\n\nSemantic mapping reasoner and assembler\n\n[![DOI](https://zenodo.org/badge/626870339.svg)](https://zenodo.org/badge/latestdoi/626870339)\n\nThis software provides:\n\n1. An object model for semantic mappings (based on SSSOM)\n2. Functionality for assembling and reasoning over\n   semantic mappings at scale\n3. A provenance model for automatically generated mappings\n4. A confidence model granular at the curator-level,\n   mapping set-level, and community feedback-level\n\n## \ud83d\ude80 Installation\n\nThe most recent release can be installed from\n[PyPI](https://pypi.org/project/semra/) with:\n\n```shell\npip install semra\n```\n\nThe most recent code and data can be installed directly from GitHub with:\n\n```shell\npip install git+https://github.com/biopragmatics/semra.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/semra/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<!--\n### \ud83c\udf81 Support\n\nThis project has been supported by the following organizations (in alphabetical order):\n\n- [Harvard Program in Therapeutic Science - Laboratory of Systems Pharmacology](https://hits.harvard.edu/the-program/laboratory-of-systems-pharmacology/)\n\n-->\n\n<!--\n### \ud83d\udcb0 Funding\n\nThis project has been supported by the following grants:\n\n| Funding Body                                             | Program                                                                                                                       | Grant           |\n|----------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|-----------------|\n| DARPA                                                    | [Automating Scientific Knowledge Extraction (ASKE)](https://www.darpa.mil/program/automating-scientific-knowledge-extraction) | HR00111990009   |\n-->\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\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\ngit clone git+https://github.com/biopragmatics/semra.git\ncd semra\npip 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\ntox\n```\n\nAdditionally, these tests are automatically re-run with each commit in a\n[GitHub Action](https://github.com/biopragmatics/semra/actions?query=workflow%3ATests).\n\n### \ud83d\udcd6 Building the Documentation\n\nThe documentation can be built locally using the following:\n\n```shell\ngit clone git+https://github.com/biopragmatics/semra.git\ncd semra\ntox -e docs\nopen 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\nThe documentation can be deployed to [ReadTheDocs](https://readthedocs.io) using \n[this guide](https://docs.readthedocs.io/en/stable/intro/import-guide.html).\nThe [`.readthedocs.yml`](.readthedocs.yml) YAML file contains all the configuration you'll need.\nYou can also set up continuous integration on GitHub to check not only that\nSphinx can build the documentation in an isolated environment (i.e., with ``tox -e docs-test``)\nbut also that [ReadTheDocs can build it too](https://docs.readthedocs.io/en/stable/pull-requests.html).\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\ntox -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/semra/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\n   configured to avoid the need for manual input at this 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\n</details>\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Semantic mapping reasoner and assembler",
    "version": "0.0.8",
    "project_urls": {
        "Documentation": "https://semra.readthedocs.io",
        "Download": "https://github.com/biopragmatics/semra/releases",
        "Homepage": "https://github.com/biopragmatics/semra",
        "Source": "https://github.com/biopragmatics/semra",
        "Tracker": "https://github.com/biopragmatics/semra/issues"
    },
    "split_keywords": [
        "snekpack",
        " cookiecutter",
        " sssom",
        " semantic mappings",
        " ontology merging"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3761eb2fdf09b135ad3f95d5eef1de1de00fe2996785e7273bebd3baef352e62",
                "md5": "41774007b421a3df9b9fdae2b7414420",
                "sha256": "0a513a737a7bd966ebd85db993d3589b9cbc7b38234b104becd2d70d94dc8b65"
            },
            "downloads": -1,
            "filename": "semra-0.0.8-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "41774007b421a3df9b9fdae2b7414420",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 77015,
            "upload_time": "2024-04-11T14:45:20",
            "upload_time_iso_8601": "2024-04-11T14:45:20.765428Z",
            "url": "https://files.pythonhosted.org/packages/37/61/eb2fdf09b135ad3f95d5eef1de1de00fe2996785e7273bebd3baef352e62/semra-0.0.8-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7adbc00e8315c08e70c122c8da484c12ccb00764b3c0399aa1010cd7f11d620",
                "md5": "f053f3d336e7db0016b45a00f8666de8",
                "sha256": "0a0d48220e63220acea5a1415bcb47959df1342f7c66547d56b82ae6f6d87514"
            },
            "downloads": -1,
            "filename": "semra-0.0.8.tar.gz",
            "has_sig": false,
            "md5_digest": "f053f3d336e7db0016b45a00f8666de8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 481152,
            "upload_time": "2024-04-11T14:45:22",
            "upload_time_iso_8601": "2024-04-11T14:45:22.999323Z",
            "url": "https://files.pythonhosted.org/packages/c7/ad/bc00e8315c08e70c122c8da484c12ccb00764b3c0399aa1010cd7f11d620/semra-0.0.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-11 14:45:22",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "biopragmatics",
    "github_project": "semra",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "semra"
}
        
Elapsed time: 0.22647s