pyiomica


Namepyiomica JSON
Version 1.4.3 PyPI version JSON
download
home_pagehttps://github.com/gmiaslab/pyiomica
SummaryOmics Analysis Tool Suite
upload_time2025-10-06 15:49:19
maintainerNone
docs_urlNone
authorS. Domanskyi, C. Piermarocchi, G. Mias
requires_pythonNone
licenseMIT
keywords omics longitudinal bioinformatics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![logo](https://raw.githubusercontent.com/gmiaslab/pyiomica/master/pyiomica/data/PyIOmica.png)

[![release](https://img.shields.io/github/v/release/gmiaslab/pyiomica?logo=github)](https://github.com/gmiaslab/pyiomica)
[![pypi version](https://img.shields.io/pypi/v/pyiomica?logo=pypi)](https://pypi.org/project/pyiomica)
[![readthedocs](https://readthedocs.org/projects/pyiomica/badge/?version=latest&style=flat)](https://pyiomica.readthedocs.io)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.3342612.svg)](https://doi.org/10.5281/zenodo.3342612)
[![pypi license](https://img.shields.io/pypi/l/pyiomica)](https://pypi.org/project/pyiomica)

# PyIOmica (pyiomica)
This repository contains PyIOmica, a Python package that provides bioinformatics utilities for analyzing (dynamic) omics datasets. PyIOmica extends MathIOmica usage to Python and implements new visualizations and computational tools for graph analyses. The documentation is available at Read the Docs: https://pyiomica.readthedocs.io/en/latest/

# PyIOmica Installation Instructions

## A. INSTALLATION 
  
### Pre-Installation Requirements

     To install PyIOmica on any platform you need Python. Required package dependencies are listed in the setup.py file. The software has been tested with Python 3.13.5. Compatibility with earlier Python 3.x versions depends on the minimum requirements of the dependencies listed in setup.py.
  
### Installation Instructions

1. To install the current release from PyPI (Python Package Index) use pip:

```bash
pip install pyiomica
```

Alternatively, you can install directly from github using:
```bash
pip install git+https://github.com/gmiaslab/pyiomica/
```

or

```bash
git clone https://github.com/gmiaslab/pyiomica/
python setup.py install
```


## B. RUNNING PyIOmica

After installation you can run:

```python
>>> import pyiomica
```

## C. DOCUMENTATION

Documentation for PyIOmica is built-in and is available through the help() functionality in Python.
Also the documentation is available at Read the Docs: https://pyiomica.readthedocs.io/en/latest/

## D. ADDITIONAL INFORMATION

* PyIOmica is a multi-omics analysis framework distributed as a Python package that aims to assist in bioinformatics.
* The most current version of the package is maintained at
<https://github.com/gmiaslab/pyiomica>
* News are distributed via twitter (@mathiomica)

## E. LICENSING

PyIOmica is released under an MIT License. Please also consult the folder LICENSES distributed with PyIOmica regarding Licensing information for use of external associated content.

## F. OTHER CONTACT INFORMATION

* G. Mias Lab (https://georgemias.org)
* e-mail: mathiomica@gmail.com
* twitter: @mathiomica

## G. FUNDING

PyIOmica development and associated research were supported by the Translational Research Institute 
for Space Health through NASA Cooperative Agreement NNX16AO69A (Project Number T0412, PI: Mias). 
The content is solely the responsibility of the authors and does not necessarily 
represent the official views of the supporting funding agencies.

## I. CITATIONS
- If you use PyIOmica in your work please use the following citation:

   - Sergii Domanskyi, Carlo Piermarocchi and George I Mias, *PyIOmica: longitudinal omics analysis and trend identification*. Bioinformatics, 36(7), 2306–2307 (2020). https://doi.org/10.1093/bioinformatics/btz896

- If you use PyIOmica's visibility graph functionality, please also consider the following citation:

   - Minzhang Zheng, Sergii Domanskyi, Carlo Piermarocchi, and George I Mias, *Visibility graph based temporal community detection with applications in biological time series*, Sci Rep 11, 5623 (2021). https://doi.org/10.1038/s41598-021-84838-x


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/gmiaslab/pyiomica",
    "name": "pyiomica",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "omics, longitudinal, bioinformatics",
    "author": "S. Domanskyi, C. Piermarocchi, G. Mias",
    "author_email": "gmiaslab@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/92/78/ee572ea490f08d13633bd6112d13557769fd14eba2b730e069d7d6a94c70/pyiomica-1.4.3.tar.gz",
    "platform": null,
    "description": "![logo](https://raw.githubusercontent.com/gmiaslab/pyiomica/master/pyiomica/data/PyIOmica.png)\n\n[![release](https://img.shields.io/github/v/release/gmiaslab/pyiomica?logo=github)](https://github.com/gmiaslab/pyiomica)\n[![pypi version](https://img.shields.io/pypi/v/pyiomica?logo=pypi)](https://pypi.org/project/pyiomica)\n[![readthedocs](https://readthedocs.org/projects/pyiomica/badge/?version=latest&style=flat)](https://pyiomica.readthedocs.io)\n[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.3342612.svg)](https://doi.org/10.5281/zenodo.3342612)\n[![pypi license](https://img.shields.io/pypi/l/pyiomica)](https://pypi.org/project/pyiomica)\n\n# PyIOmica (pyiomica)\nThis repository contains PyIOmica, a Python package that provides bioinformatics utilities for analyzing (dynamic) omics datasets. PyIOmica extends MathIOmica usage to Python and implements new visualizations and computational tools for graph analyses. The documentation is available at Read the Docs: https://pyiomica.readthedocs.io/en/latest/\n\n# PyIOmica Installation Instructions\n\n## A. INSTALLATION \n  \n### Pre-Installation Requirements\n\n     To install PyIOmica on any platform you need Python. Required package dependencies are listed in the setup.py file. The software has been tested with Python 3.13.5. Compatibility with earlier Python 3.x versions depends on the minimum requirements of the dependencies listed in setup.py.\n  \n### Installation Instructions\n\n1. To install the current release from PyPI (Python Package Index) use pip:\n\n```bash\npip install pyiomica\n```\n\nAlternatively, you can install directly from github using:\n```bash\npip install git+https://github.com/gmiaslab/pyiomica/\n```\n\nor\n\n```bash\ngit clone https://github.com/gmiaslab/pyiomica/\npython setup.py install\n```\n\n\n## B. RUNNING PyIOmica\n\nAfter installation you can run:\n\n```python\n>>> import pyiomica\n```\n\n## C. DOCUMENTATION\n\nDocumentation for PyIOmica is built-in and is available through the help() functionality in Python.\nAlso the documentation is available at Read the Docs: https://pyiomica.readthedocs.io/en/latest/\n\n## D. ADDITIONAL INFORMATION\n\n* PyIOmica is a multi-omics analysis framework distributed as a Python package that aims to assist in bioinformatics.\n* The most current version of the package is maintained at\n<https://github.com/gmiaslab/pyiomica>\n* News are distributed via twitter (@mathiomica)\n\n## E. LICENSING\n\nPyIOmica is released under an MIT License. Please also consult the folder LICENSES distributed with PyIOmica regarding Licensing information for use of external associated content.\n\n## F. OTHER CONTACT INFORMATION\n\n* G. Mias Lab (https://georgemias.org)\n* e-mail: mathiomica@gmail.com\n* twitter: @mathiomica\n\n## G. FUNDING\n\nPyIOmica development and associated research were supported by the Translational Research Institute \nfor Space Health through NASA Cooperative Agreement NNX16AO69A (Project Number T0412, PI: Mias). \nThe content is solely the responsibility of the authors and does not necessarily \nrepresent the official views of the supporting funding agencies.\n\n## I. CITATIONS\n- If you use PyIOmica in your work please use the following citation:\n\n   - Sergii Domanskyi, Carlo Piermarocchi and George I Mias, *PyIOmica: longitudinal omics analysis and trend identification*. Bioinformatics, 36(7), 2306\u20132307 (2020). https://doi.org/10.1093/bioinformatics/btz896\n\n- If you use PyIOmica's visibility graph functionality, please also consider the following citation:\n\n   - Minzhang Zheng, Sergii Domanskyi, Carlo Piermarocchi, and George I Mias, *Visibility graph based temporal community detection with applications in biological time series*, Sci Rep 11, 5623 (2021). https://doi.org/10.1038/s41598-021-84838-x\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Omics Analysis Tool Suite",
    "version": "1.4.3",
    "project_urls": {
        "Download": "https://github.com/gmiaslab/pyiomica/archive/1.4.3.tar.gz",
        "Homepage": "https://github.com/gmiaslab/pyiomica"
    },
    "split_keywords": [
        "omics",
        " longitudinal",
        " bioinformatics"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ac51c832e3e576f7ff264afacc39195000e02f170d4f3bd917ccc097c1f993cc",
                "md5": "0349d3fbc3fb2598541a4f9efb2ee4f2",
                "sha256": "728b580b2fb38191a746f338d16b3c533669999fd094968364fb097ea7523f35"
            },
            "downloads": -1,
            "filename": "pyiomica-1.4.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0349d3fbc3fb2598541a4f9efb2ee4f2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 26727807,
            "upload_time": "2025-10-06T15:49:16",
            "upload_time_iso_8601": "2025-10-06T15:49:16.074300Z",
            "url": "https://files.pythonhosted.org/packages/ac/51/c832e3e576f7ff264afacc39195000e02f170d4f3bd917ccc097c1f993cc/pyiomica-1.4.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9278ee572ea490f08d13633bd6112d13557769fd14eba2b730e069d7d6a94c70",
                "md5": "1e3a27f76ea918c4910a99a75d1d3ffc",
                "sha256": "16b929cfac64aa0e0aa93351238fca98b7d76deaf97596289ebe9925c186cd72"
            },
            "downloads": -1,
            "filename": "pyiomica-1.4.3.tar.gz",
            "has_sig": false,
            "md5_digest": "1e3a27f76ea918c4910a99a75d1d3ffc",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 26401240,
            "upload_time": "2025-10-06T15:49:19",
            "upload_time_iso_8601": "2025-10-06T15:49:19.473462Z",
            "url": "https://files.pythonhosted.org/packages/92/78/ee572ea490f08d13633bd6112d13557769fd14eba2b730e069d7d6a94c70/pyiomica-1.4.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-06 15:49:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "gmiaslab",
    "github_project": "pyiomica",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pyiomica"
}
        
Elapsed time: 1.77784s