bioscience


Namebioscience JSON
Version 0.1.2 PyPI version JSON
download
home_pagehttps://github.com/aureliolfdez/bioscience
SummarybioScience: A new Python science library for High-Performance Computing Bioinformatics Analytics
upload_time2023-12-10 19:23:43
maintainerAurelio Lopez-Fernandez
docs_urlNone
author
requires_python>=3.10
licenseBSD License
keywords python data-science data-mining bioinformatics high-performance-computing data-analysis
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            bioScience: A new Python science library for High-Performance Computing Bioinformatics Analytics
=================================================================================================

**Deployment & Documentation & Stats**

.. image:: https://img.shields.io/badge/pypi-v0.1.2-brightgreen
   :target: https://pypi.org/project/bioscience/
   :alt: PyPI version


.. image:: https://readthedocs.org/projects/bioscience/badge/?version=latest
   :target: https://bioscience.readthedocs.io/en/latest/?badge=latest
   :alt: Documentation Status


.. image:: https://img.shields.io/github/stars/aureliolfdez/bioscience.svg
   :target: https://github.com/aureliolfdez/bioscience/stargazers
   :alt: GitHub stars


.. image:: https://img.shields.io/github/forks/aureliolfdez/bioscience.svg?color=blue
   :target: https://github.com/aureliolfdez/bioscience/network
   :alt: GitHub forks


.. image:: https://img.shields.io/badge/License-BSD_3--Clause-blue.svg
   :target: https://github.com/aureliolfdez/bioscience/blob/main/LICENSE
   :alt: License

----


BioScience is an advanced Python library designed to satisfy the growing data analysis needs in the field of bioinformatics by leveraging High-Performance Computing (HPC). This library encompasses a vast multitude of functionalities, from loading specialised gene expression datasets (microarrays, RNA-Seq, etc.) to pre-processing techniques and data mining algorithms suitable for this type of datasets. BioScience is distinguished by its capacity to manage large amounts of biological data, providing users with efficient and scalable tools for the analysis of genomic and transcriptomic data through the use of parallel architectures for clusters composed of CPUs and GPUs.


**BioScience** is featured for:

* **Unified APIs, detailed documentation, and interactive examples** available to the community.
* **Complete coverage** for generate biological results from gene co-expression datasets.
* **Optimized models** to generate results in the shortest possible time.
* **Optimization of a High-Performance Computing (HPC) and Big Data ecosystem**.

----

Installation
============

It is recommended to use **pip** for installation. Please make sure
**the latest version** is installed, as bioScience is updated frequently:

.. code-block:: bash

   pip install bioscience            # normal install
   pip install --upgrade bioscience  # or update if needed
   pip install --pre bioscience      # or include pre-release version for new features

Alternatively, you could clone and run setup.py file:

.. code-block:: bash

   git clone https://github.com/aureliolfdez/bioscience.git
   pip install .

**Required Dependencies**\ :

* **Python**>=3.10
* **numpy**>=1.26.0
* **pandas**>=2.1.1
* **scikit-learn**>=1.3.1
* **numba**>=0.58.0

----

API demo
========

.. code-block:: python


      import bioscience as bs

      if __name__ == "__main__":
         
         # RNA-Seq dataset load
         dataset = load(path="datasets/rnaseq.txt", index_gene=0, index_lengths=1 ,naFilter=True, head = 0)

         # RNA-Seq preprocessing
         bs.tpm(dataset)

         # Binary preprocessing
         bs.binarize(dataset)

         # Data mining phase
         listModels = bs.bibit(dataset, cMnr=2, cMnc=2, mode=3, deviceCount=1, debug = True)

         # Save results
         bs.saveGenes(path="/path/", models=listModels, data=dataset)

**Citing bioScience**\ :

`bioScience <#>`_ is published in
`(under review) <#>`_.
If you use bioScience in a scientific publication, we would appreciate citations to the following paper::

   Under review


**Key Links and Resources**\ :

* `View the latest codes on Github <https://github.com/aureliolfdez/bioscience>`_
* `View the documentation & API <https://bioscience.readthedocs.io/>`_
* `View all examples <https://github.com/aureliolfdez/bioscience/tree/main/tests/test_integration>`_

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/aureliolfdez/bioscience",
    "name": "bioscience",
    "maintainer": "Aurelio Lopez-Fernandez",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "alopfer1@upo.es",
    "keywords": "python,data-science,data-mining,bioinformatics,high-performance-computing,data-analysis",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/d6/e9/ed340bb2777799149edf20966646f946a82f2d7337f18c44065b3765737e/bioscience-0.1.2.tar.gz",
    "platform": null,
    "description": "bioScience: A new Python science library for High-Performance Computing Bioinformatics Analytics\n=================================================================================================\n\n**Deployment & Documentation & Stats**\n\n.. image:: https://img.shields.io/badge/pypi-v0.1.2-brightgreen\n   :target: https://pypi.org/project/bioscience/\n   :alt: PyPI version\n\n\n.. image:: https://readthedocs.org/projects/bioscience/badge/?version=latest\n   :target: https://bioscience.readthedocs.io/en/latest/?badge=latest\n   :alt: Documentation Status\n\n\n.. image:: https://img.shields.io/github/stars/aureliolfdez/bioscience.svg\n   :target: https://github.com/aureliolfdez/bioscience/stargazers\n   :alt: GitHub stars\n\n\n.. image:: https://img.shields.io/github/forks/aureliolfdez/bioscience.svg?color=blue\n   :target: https://github.com/aureliolfdez/bioscience/network\n   :alt: GitHub forks\n\n\n.. image:: https://img.shields.io/badge/License-BSD_3--Clause-blue.svg\n   :target: https://github.com/aureliolfdez/bioscience/blob/main/LICENSE\n   :alt: License\n\n----\n\n\nBioScience is an advanced Python library designed to satisfy the growing data analysis needs in the field of bioinformatics by leveraging High-Performance Computing (HPC). This library encompasses a vast multitude of functionalities, from loading specialised gene expression datasets (microarrays, RNA-Seq, etc.) to pre-processing techniques and data mining algorithms suitable for this type of datasets. BioScience is distinguished by its capacity to manage large amounts of biological data, providing users with efficient and scalable tools for the analysis of genomic and transcriptomic data through the use of parallel architectures for clusters composed of CPUs and GPUs.\n\n\n**BioScience** is featured for:\n\n* **Unified APIs, detailed documentation, and interactive examples** available to the community.\n* **Complete coverage** for generate biological results from gene co-expression datasets.\n* **Optimized models** to generate results in the shortest possible time.\n* **Optimization of a High-Performance Computing (HPC) and Big Data ecosystem**.\n\n----\n\nInstallation\n============\n\nIt is recommended to use **pip** for installation. Please make sure\n**the latest version** is installed, as bioScience is updated frequently:\n\n.. code-block:: bash\n\n   pip install bioscience            # normal install\n   pip install --upgrade bioscience  # or update if needed\n   pip install --pre bioscience      # or include pre-release version for new features\n\nAlternatively, you could clone and run setup.py file:\n\n.. code-block:: bash\n\n   git clone https://github.com/aureliolfdez/bioscience.git\n   pip install .\n\n**Required Dependencies**\\ :\n\n* **Python**>=3.10\n* **numpy**>=1.26.0\n* **pandas**>=2.1.1\n* **scikit-learn**>=1.3.1\n* **numba**>=0.58.0\n\n----\n\nAPI demo\n========\n\n.. code-block:: python\n\n\n      import bioscience as bs\n\n      if __name__ == \"__main__\":\n         \n         # RNA-Seq dataset load\n         dataset = load(path=\"datasets/rnaseq.txt\", index_gene=0, index_lengths=1 ,naFilter=True, head = 0)\n\n         # RNA-Seq preprocessing\n         bs.tpm(dataset)\n\n         # Binary preprocessing\n         bs.binarize(dataset)\n\n         # Data mining phase\n         listModels = bs.bibit(dataset, cMnr=2, cMnc=2, mode=3, deviceCount=1, debug = True)\n\n         # Save results\n         bs.saveGenes(path=\"/path/\", models=listModels, data=dataset)\n\n**Citing bioScience**\\ :\n\n`bioScience <#>`_ is published in\n`(under review) <#>`_.\nIf you use bioScience in a scientific publication, we would appreciate citations to the following paper::\n\n   Under review\n\n\n**Key Links and Resources**\\ :\n\n* `View the latest codes on Github <https://github.com/aureliolfdez/bioscience>`_\n* `View the documentation & API <https://bioscience.readthedocs.io/>`_\n* `View all examples <https://github.com/aureliolfdez/bioscience/tree/main/tests/test_integration>`_\n",
    "bugtrack_url": null,
    "license": "BSD License",
    "summary": "bioScience: A new Python science library for High-Performance Computing Bioinformatics Analytics",
    "version": "0.1.2",
    "project_urls": {
        "Bug Tracker": "https://github.com/aureliolfdez/bioscience/issues",
        "Documentation": "https://bioscience.readthedocs.io/en/latest/",
        "Download": "https://pypi.org/project/bioscience/#files",
        "Homepage": "https://github.com/aureliolfdez/bioscience",
        "Source Code": "https://github.com/aureliolfdez/bioscience"
    },
    "split_keywords": [
        "python",
        "data-science",
        "data-mining",
        "bioinformatics",
        "high-performance-computing",
        "data-analysis"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75e660899ec58fef5492bebdb6d2e7389a9150c61cc12bf9654726403f5f898b",
                "md5": "f8ac86216121b7556e87a36e0977eb0d",
                "sha256": "52c0fe6fadc253f15d31f9436c97e7b86a58e315834e384e63541ecaa042b305"
            },
            "downloads": -1,
            "filename": "bioscience-0.1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f8ac86216121b7556e87a36e0977eb0d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 20191,
            "upload_time": "2023-12-10T19:23:41",
            "upload_time_iso_8601": "2023-12-10T19:23:41.471795Z",
            "url": "https://files.pythonhosted.org/packages/75/e6/60899ec58fef5492bebdb6d2e7389a9150c61cc12bf9654726403f5f898b/bioscience-0.1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6e9ed340bb2777799149edf20966646f946a82f2d7337f18c44065b3765737e",
                "md5": "b67c0c146f578d38685dc4ee750d3e42",
                "sha256": "a8c9dc608679b860796cad1e37b4207e1b1a9d3a32d573c54d0b2b1ac6275bdf"
            },
            "downloads": -1,
            "filename": "bioscience-0.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "b67c0c146f578d38685dc4ee750d3e42",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 19684,
            "upload_time": "2023-12-10T19:23:43",
            "upload_time_iso_8601": "2023-12-10T19:23:43.577827Z",
            "url": "https://files.pythonhosted.org/packages/d6/e9/ed340bb2777799149edf20966646f946a82f2d7337f18c44065b3765737e/bioscience-0.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-10 19:23:43",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "aureliolfdez",
    "github_project": "bioscience",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "bioscience"
}
        
Elapsed time: 0.16580s