xlmhglite


Namexlmhglite JSON
Version 1.1.0 PyPI version JSON
download
home_pagehttps://github.com/GuyTeichman/xlmhglite
SummaryXL-mHG lite: A light implementation of the Semiparametric Enrichment Test
upload_time2023-06-11 15:32:36
maintainer
docs_urlNone
authorGuy Teichman
requires_python>=3.8
licenseGPLv3
keywords statistics nonparametric semiparametric enrichment test ranked lists
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            XL-mHG Lite
=============


**Useful links:** `Documentation <https://guyteichman.github.io/xlmhglite>`_ |
`Source code <https://github.com/GuyTeichman/xlmhglite>`_ |
`Bug reports <https://github.com/GuyTeichman/xlmhglite/issues>`_ | |pipimage| | |versionssupported| | |githubactions| | |downloads| | |license|

`xlmhg` is an efficient Python/Cython implementation of the semiparametric
`XL-mHG test`__ for enrichment in ranked lists. The XL-mHG test is an extension
of the nonparametric `mHG test`__, which was developed by `Dr. Zohar
Yakhini`__ and colleagues.

`xlmhglite` is a fork of the original `xlmhg` package (which is unfortunately no longer being maintained).
This fork was updated to support modern Python versions (Python >=3.8), fix bugs in the original implementation,
and reduce the mandatory dependencies of the project to a minimum.
To that end, the plotting functionality of `xlmhg` is not part of the core `xlmhglite` package, instead being an optional requirement.

__ xlmhg_paper_
__ mhg_paper_
__ zohar_

Installation
------------

To install the core ("lite") version of `xlmhglite`:
.. code-block:: bash

    $ pip install xlmhglite

To install the complete version of `xlmhglite` (including the plotting functionality):
.. code-block:: bash

    $ pip install xlmhglite['all']

Getting started
---------------

The `xlmhglite` package provides two functions (one simple and more more advanced)
for performing XL-mHG tests. These functions are documented in the
`User Manual`__. Here's a quick example using the "simple" test function:

.. code-block:: python

    import xlmhglite
    stat, cutoff, pval = xlmhglite.xlmhg_test(v, X, L)

Where: ``v`` is the ranked list of 0's and 1's, represented by a NumPy array of
integers, ``X`` and ``L`` are the XL-mHG parameters, and the return values have
the following meanings:

- ``stat``: The XL-mHG test statistic
- ``cutoff``: The cutoff at which XL-mHG test statistic was attained
- ``pval``: The XL-mHG p-value

__ user_manual_

XL-mHG Lite Documentation
---------------------------

Please refer to the `XL-mHG User Manual`__.

__ user_manual_

Citing XL-mHG
-------------

If you use the XL-mHG test in your research, please cite `Eden et al. (PLoS
Comput Biol, 2007)`__ and `Wagner (PLoS One, 2015)`__.

__ mhg_paper_
__ go_pca_paper_

Copyright and License
---------------------

Copyright (c) 2015-2019 Florian Wagner

::

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright notice, this
    list of conditions and the following disclaimer.

    * Redistributions in binary form must reproduce the above copyright notice,
    this list of conditions and the following disclaimer in the documentation
    and/or other materials provided with the distribution.

    * Neither the name of the copyright holder nor the names of its
    contributors may be used to endorse or promote products derived from
    this software without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
    DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
    SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
    CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
    OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


.. _xlmhg_paper: https://doi.org/10.7287/peerj.preprints.1962v2

.. _zohar: http://bioinfo.cs.technion.ac.il/people/zohar

.. _mhg_paper: https://dx.doi.org/10.1371/journal.pcbi.0030039

.. _go_pca_paper: https://dx.doi.org/10.1371/journal.pone.0143196

.. _user_manual: https://guyteichman.github.io/xlmhglite

.. |license| image:: https://img.shields.io/pypi/l/xlmhglite.svg
    :target: https://pypi.python.org/pypi/xlmhg
    :alt: License


.. |pipimage| image:: https://img.shields.io/pypi/v/xlmhglite.svg
    :target: https://pypi.python.org/pypi/xlmhglite
    :alt: PyPI version
.. |downloads| image:: https://pepy.tech/badge/xlmhglite
    :target: https://pepy.tech/project/xlmhglite
    :alt: Downloads
.. |versionssupported| image:: https://img.shields.io/pypi/pyversions/xlmhglite.svg
    :target: https://pypi.python.org/pypi/xlmhglite
    :alt: Python versions supported

..  |githubactions| image:: https://github.com/guyteichman/xlmhglite/actions/workflows/tests.yml/badge.svg
    :target: https://github.com/GuyTeichman/xlmhglite/actions/workflows/tests.yml
    :alt: Build status


History
=======

1.1.0 (2023-06-11)
------------------
This version improves clarity of warning messages and addresses some additional bugs.
Moreover, the project has been transitioned to use pyproject.toml and setup.cfg, and old code was cleaned up for better maintainability.

Changed
********
* Warning messages regarding failed import of the cython module were made more informative.
* Transitioned the project to use pyproject.toml and setup.cfg, and cleaned up legacy code from setup.py.

Fixed
******
* Fixed bug where calculating enrichment scores using the pure Python implementation would raise an AttributeError.
* Fixed bug where the pure Python implementation would raise an ImportError if numba is not already installed on the system.

1.0.1 (2023-06-11)
------------------
Minor patch addressing installation issues.

1.0.0 (2023-06-10)
------------------
First stable release.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/GuyTeichman/xlmhglite",
    "name": "xlmhglite",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "statistics,nonparametric,semiparametric,enrichment test,ranked lists",
    "author": "Guy Teichman",
    "author_email": "guyteichman@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/7d/e0/23b2e6372fae8f513017a174e5f1280b3040e1480c01a2bd3b226aea9a7e/xlmhglite-1.1.0.tar.gz",
    "platform": null,
    "description": "XL-mHG Lite\n=============\n\n\n**Useful links:** `Documentation <https://guyteichman.github.io/xlmhglite>`_ |\n`Source code <https://github.com/GuyTeichman/xlmhglite>`_ |\n`Bug reports <https://github.com/GuyTeichman/xlmhglite/issues>`_ | |pipimage| | |versionssupported| | |githubactions| | |downloads| | |license|\n\n`xlmhg` is an efficient Python/Cython implementation of the semiparametric\n`XL-mHG test`__ for enrichment in ranked lists. The XL-mHG test is an extension\nof the nonparametric `mHG test`__, which was developed by `Dr. Zohar\nYakhini`__ and colleagues.\n\n`xlmhglite` is a fork of the original `xlmhg` package (which is unfortunately no longer being maintained).\nThis fork was updated to support modern Python versions (Python >=3.8), fix bugs in the original implementation,\nand reduce the mandatory dependencies of the project to a minimum.\nTo that end, the plotting functionality of `xlmhg` is not part of the core `xlmhglite` package, instead being an optional requirement.\n\n__ xlmhg_paper_\n__ mhg_paper_\n__ zohar_\n\nInstallation\n------------\n\nTo install the core (\"lite\") version of `xlmhglite`:\n.. code-block:: bash\n\n    $ pip install xlmhglite\n\nTo install the complete version of `xlmhglite` (including the plotting functionality):\n.. code-block:: bash\n\n    $ pip install xlmhglite['all']\n\nGetting started\n---------------\n\nThe `xlmhglite` package provides two functions (one simple and more more advanced)\nfor performing XL-mHG tests. These functions are documented in the\n`User Manual`__. Here's a quick example using the \"simple\" test function:\n\n.. code-block:: python\n\n    import xlmhglite\n    stat, cutoff, pval = xlmhglite.xlmhg_test(v, X, L)\n\nWhere: ``v`` is the ranked list of 0's and 1's, represented by a NumPy array of\nintegers, ``X`` and ``L`` are the XL-mHG parameters, and the return values have\nthe following meanings:\n\n- ``stat``: The XL-mHG test statistic\n- ``cutoff``: The cutoff at which XL-mHG test statistic was attained\n- ``pval``: The XL-mHG p-value\n\n__ user_manual_\n\nXL-mHG Lite Documentation\n---------------------------\n\nPlease refer to the `XL-mHG User Manual`__.\n\n__ user_manual_\n\nCiting XL-mHG\n-------------\n\nIf you use the XL-mHG test in your research, please cite `Eden et al. (PLoS\nComput Biol, 2007)`__ and `Wagner (PLoS One, 2015)`__.\n\n__ mhg_paper_\n__ go_pca_paper_\n\nCopyright and License\n---------------------\n\nCopyright (c) 2015-2019 Florian Wagner\n\n::\n\n    Redistribution and use in source and binary forms, with or without\n    modification, are permitted provided that the following conditions are met:\n\n    * Redistributions of source code must retain the above copyright notice, this\n    list of conditions and the following disclaimer.\n\n    * Redistributions in binary form must reproduce the above copyright notice,\n    this list of conditions and the following disclaimer in the documentation\n    and/or other materials provided with the distribution.\n\n    * Neither the name of the copyright holder nor the names of its\n    contributors may be used to endorse or promote products derived from\n    this software without specific prior written permission.\n\n    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n    AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n    DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n    SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n    CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n    OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n    OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\n.. _xlmhg_paper: https://doi.org/10.7287/peerj.preprints.1962v2\n\n.. _zohar: http://bioinfo.cs.technion.ac.il/people/zohar\n\n.. _mhg_paper: https://dx.doi.org/10.1371/journal.pcbi.0030039\n\n.. _go_pca_paper: https://dx.doi.org/10.1371/journal.pone.0143196\n\n.. _user_manual: https://guyteichman.github.io/xlmhglite\n\n.. |license| image:: https://img.shields.io/pypi/l/xlmhglite.svg\n    :target: https://pypi.python.org/pypi/xlmhg\n    :alt: License\n\n\n.. |pipimage| image:: https://img.shields.io/pypi/v/xlmhglite.svg\n    :target: https://pypi.python.org/pypi/xlmhglite\n    :alt: PyPI version\n.. |downloads| image:: https://pepy.tech/badge/xlmhglite\n    :target: https://pepy.tech/project/xlmhglite\n    :alt: Downloads\n.. |versionssupported| image:: https://img.shields.io/pypi/pyversions/xlmhglite.svg\n    :target: https://pypi.python.org/pypi/xlmhglite\n    :alt: Python versions supported\n\n..  |githubactions| image:: https://github.com/guyteichman/xlmhglite/actions/workflows/tests.yml/badge.svg\n    :target: https://github.com/GuyTeichman/xlmhglite/actions/workflows/tests.yml\n    :alt: Build status\n\n\nHistory\n=======\n\n1.1.0 (2023-06-11)\n------------------\nThis version improves clarity of warning messages and addresses some additional bugs.\nMoreover, the project has been transitioned to use pyproject.toml and setup.cfg, and old code was cleaned up for better maintainability.\n\nChanged\n********\n* Warning messages regarding failed import of the cython module were made more informative.\n* Transitioned the project to use pyproject.toml and setup.cfg, and cleaned up legacy code from setup.py.\n\nFixed\n******\n* Fixed bug where calculating enrichment scores using the pure Python implementation would raise an AttributeError.\n* Fixed bug where the pure Python implementation would raise an ImportError if numba is not already installed on the system.\n\n1.0.1 (2023-06-11)\n------------------\nMinor patch addressing installation issues.\n\n1.0.0 (2023-06-10)\n------------------\nFirst stable release.\n",
    "bugtrack_url": null,
    "license": "GPLv3",
    "summary": "XL-mHG lite: A light implementation of the Semiparametric Enrichment Test",
    "version": "1.1.0",
    "project_urls": {
        "Homepage": "https://github.com/GuyTeichman/xlmhglite"
    },
    "split_keywords": [
        "statistics",
        "nonparametric",
        "semiparametric",
        "enrichment test",
        "ranked lists"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79396d96fc3cb8eb8cf24f79c46748fb27ebe0d3d772779eeff3abf28aba333c",
                "md5": "34b1c8d84e3e781dca9004272df8af1e",
                "sha256": "fce2950b4a3ef93579196776f67dff24148853a586e5c88999b72d1c4ffaf92f"
            },
            "downloads": -1,
            "filename": "xlmhglite-1.1.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "34b1c8d84e3e781dca9004272df8af1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 85191,
            "upload_time": "2023-06-11T15:32:33",
            "upload_time_iso_8601": "2023-06-11T15:32:33.990971Z",
            "url": "https://files.pythonhosted.org/packages/79/39/6d96fc3cb8eb8cf24f79c46748fb27ebe0d3d772779eeff3abf28aba333c/xlmhglite-1.1.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7de023b2e6372fae8f513017a174e5f1280b3040e1480c01a2bd3b226aea9a7e",
                "md5": "f5bda09f1f076e6b039ba891b8c969dc",
                "sha256": "dbc56b92d812ec1feb252cf2e9c18b6bdbe1f0f8288fa93c5f8105ed9df09ab0"
            },
            "downloads": -1,
            "filename": "xlmhglite-1.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "f5bda09f1f076e6b039ba891b8c969dc",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 260735,
            "upload_time": "2023-06-11T15:32:36",
            "upload_time_iso_8601": "2023-06-11T15:32:36.155766Z",
            "url": "https://files.pythonhosted.org/packages/7d/e0/23b2e6372fae8f513017a174e5f1280b3040e1480c01a2bd3b226aea9a7e/xlmhglite-1.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-11 15:32:36",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "GuyTeichman",
    "github_project": "xlmhglite",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "xlmhglite"
}
        
Elapsed time: 0.07581s