limax


Namelimax JSON
Version 0.3.1 PyPI version JSON
download
home_pagehttps://github.com/matthiaskoenig/limax
Summarylimax are python utilities for working with LiMAx.
upload_time2023-02-02 13:02:16
maintainerMatthias Koenig
docs_urlNone
authorMatthias Koenig
requires_python>=3.8
licenseLGPL-3.0
keywords modeling liver limax
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. image:: https://github.com/matthiaskoenig/limax/raw/develop/docs/images/favicon/limax-100x100-300dpi.png
   :align: left
   :alt: limax logo

limax: python utilities for LiMAx
==============================================================

.. image:: https://github.com/matthiaskoenig/limax/workflows/CI-CD/badge.svg
   :target: https://github.com/matthiaskoenig/limax/workflows/CI-CD
   :alt: GitHub Actions CI/CD Status

.. image:: https://img.shields.io/pypi/v/limax.svg
   :target: https://pypi.org/project/limax/
   :alt: Current PyPI Version

.. image:: https://img.shields.io/pypi/pyversions/limax.svg
   :target: https://pypi.org/project/limax/
   :alt: Supported Python Versions

.. image:: https://img.shields.io/pypi/l/limax.svg
   :target: http://opensource.org/licenses/LGPL-3.0
   :alt: GNU Lesser General Public License 3

.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.7382669.svg
   :target: https://doi.org/10.5281/zenodo.7382669
   :alt: Zenodo DOI

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
   :target: https://github.com/ambv/black
   :alt: Black

.. image:: http://www.mypy-lang.org/static/mypy_badge.svg
   :target: http://mypy-lang.org/
   :alt: mypy

limax is a collection of python utilities for working with
LiMAx data with source code available from 
`https://github.com/matthiaskoenig/limax <https://github.com/matthiaskoenig/limax>`__.

The project is developed in collaboration by the Humboldt-University Berlin 
(`Matthias König <https://livermetabolism.com>`__)
and the Jena University Hospital (`Hans-Michael Tautenhahn <https://www.uniklinikum-jena.de/avc/Team.html>`__).

Features include:

- Anonymisation of LiMAx raw data files
- Visualization of LiMAx DOB curves
- Calculation of AUC, LiMAx values and other pharmacokinetics parameters from LiMAx DOB curves. 

If you have any questions or issues please `open an issue <https://github.com/matthiaskoenig/limax/issues>`__.

How to cite
===========

.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.7382669.svg
   :target: https://doi.org/10.5281/zenodo.7382669
   :alt: Zenodo DOI

Installation
============
`limax` is available from `pypi <https://pypi.python.org/pypi/limax>`__ and 
can be installed via:: 

    pip install limax

Best practise is to setup a virtual environment example via conda and install the package.
First install anaconda via https://docs.anaconda.com/anaconda/install/index.html.
To run the limax tool open a terminal app (e.g. Application -> Utilities -> terminal on MacOS) 
and create the conda environment 

::

    conda create -n limax python=3.10
    conda activate limax
    (limax) pip install limax --upgrade



Usage
=====

Command line tool
-----------------

After installation LiMAx analysis can be performed using the :code:`limax` command line tool

.. code:: bash

    $ limax
    
    ────────────────────────────────────────────────────────────────────────────────
    💉 LIMAX ANALYSIS 💉
    Version 0.2.4 (https://github.com/matthiaskoenig/limax)
    Citation https://doi.org/10.5281/zenodo.7382669
    ────────────────────────────────────────────────────────────────────────────────
    Example processing single LiMAx raw file:
        limax -i patient1.csv -o .
    Example processing folder with LiMAx raw files:
        limax -i limax_examples -o limax_examples_processed
    ────────────────────────────────────────────────────────────────────────────────
    Required argument '--input' missing.
    Usage: commands.py [options]
    
    Options:
      -h, --help            show this help message and exit
      -i INPUT_PATH, --input=INPUT_PATH
                            Path to folder with LiMAx raw files or single LiMAx
                            raw file as '*.csv'.
      -o OUTPUT_DIR, --output_dir=OUTPUT_DIR
                            Path to output folder with processed LiMAx files as
                            '*.json'.
    ────────────────────────────────────────────────────────────────────────────────


Common problems
===============
On MacOs the terminal app requires permissions to access files, i.e.

.. code:: bash

    PermissionError: [Errno 1] Operation not permitted

This can be solved by changing the permissions of the terminal app via https://stackoverflow.com/questions/58479686/permissionerror-errno-1-operation-not-permitted-after-macos-catalina-update:

* Go to System Preference->Security and Privacy.
* On the left side click on Full Disk Access
* Now click on bottom left lock icon and enter password to make changes, see Label 3
* Now click on + sign button
* Browse the terminal app from Application -> Utilities


License
=======
* Source Code: `LGPLv3 <http://opensource.org/licenses/LGPL-3.0>`__
* Documentation: `CC BY-SA 4.0 <http://creativecommons.org/licenses/by-sa/4.0/>`__

The limax source is released under both the GPL and LGPL licenses version 2 or
later. You may choose which license you choose to use the software under.

This program is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License or the GNU Lesser General Public
License as published by the Free Software Foundation, either version 2 of the
License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU General Public License for more details.

Funding
=======
This project is supported by the Federal Ministry of Education and Research (BMBF, Germany)
within the research network Systems Medicine of the Liver (**LiSyM**, grant number 031L0054) 
and by the German Research Foundation (DFG) within the Research Unit Programme FOR 5151 
"`QuaLiPerF <https://qualiperf.de>`__ (Quantifying Liver Perfusion-Function Relationship in Complex Resection - 
A Systems Medicine Approach)" by grant number 436883643 and by grant number 465194077 (Priority Programme SPP 2311, Subproject SimLivA).

Develop version
===============
The latest develop version can be installed via::

    pip install git+https://github.com/matthiaskoenig/limax.git@develop

Or via cloning the repository and installing via::

    git clone https://github.com/matthiaskoenig/limax.git
    cd limax
    pip install -e .

To install for development use::

    pip install -e .[development]


© 2022-2023 Matthias König, Eva Kindler & Hans-Michael Tautenhahn

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/matthiaskoenig/limax",
    "name": "limax",
    "maintainer": "Matthias Koenig",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "konigmatt@googlemail.com",
    "keywords": "modeling,liver,limax",
    "author": "Matthias Koenig",
    "author_email": "konigmatt@googlemail.com",
    "download_url": "https://files.pythonhosted.org/packages/55/9f/3391a4ca53478d3da75c6101610ab891f4f12a35e4cc060b7252aeba3973/limax-0.3.1.tar.gz",
    "platform": null,
    "description": ".. image:: https://github.com/matthiaskoenig/limax/raw/develop/docs/images/favicon/limax-100x100-300dpi.png\n   :align: left\n   :alt: limax logo\n\nlimax: python utilities for LiMAx\n==============================================================\n\n.. image:: https://github.com/matthiaskoenig/limax/workflows/CI-CD/badge.svg\n   :target: https://github.com/matthiaskoenig/limax/workflows/CI-CD\n   :alt: GitHub Actions CI/CD Status\n\n.. image:: https://img.shields.io/pypi/v/limax.svg\n   :target: https://pypi.org/project/limax/\n   :alt: Current PyPI Version\n\n.. image:: https://img.shields.io/pypi/pyversions/limax.svg\n   :target: https://pypi.org/project/limax/\n   :alt: Supported Python Versions\n\n.. image:: https://img.shields.io/pypi/l/limax.svg\n   :target: http://opensource.org/licenses/LGPL-3.0\n   :alt: GNU Lesser General Public License 3\n\n.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.7382669.svg\n   :target: https://doi.org/10.5281/zenodo.7382669\n   :alt: Zenodo DOI\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n   :target: https://github.com/ambv/black\n   :alt: Black\n\n.. image:: http://www.mypy-lang.org/static/mypy_badge.svg\n   :target: http://mypy-lang.org/\n   :alt: mypy\n\nlimax is a collection of python utilities for working with\nLiMAx data with source code available from \n`https://github.com/matthiaskoenig/limax <https://github.com/matthiaskoenig/limax>`__.\n\nThe project is developed in collaboration by the Humboldt-University Berlin \n(`Matthias K\u00f6nig <https://livermetabolism.com>`__)\nand the Jena University Hospital (`Hans-Michael Tautenhahn <https://www.uniklinikum-jena.de/avc/Team.html>`__).\n\nFeatures include:\n\n- Anonymisation of LiMAx raw data files\n- Visualization of LiMAx DOB curves\n- Calculation of AUC, LiMAx values and other pharmacokinetics parameters from LiMAx DOB curves. \n\nIf you have any questions or issues please `open an issue <https://github.com/matthiaskoenig/limax/issues>`__.\n\nHow to cite\n===========\n\n.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.7382669.svg\n   :target: https://doi.org/10.5281/zenodo.7382669\n   :alt: Zenodo DOI\n\nInstallation\n============\n`limax` is available from `pypi <https://pypi.python.org/pypi/limax>`__ and \ncan be installed via:: \n\n    pip install limax\n\nBest practise is to setup a virtual environment example via conda and install the package.\nFirst install anaconda via https://docs.anaconda.com/anaconda/install/index.html.\nTo run the limax tool open a terminal app (e.g. Application -> Utilities -> terminal on MacOS) \nand create the conda environment \n\n::\n\n    conda create -n limax python=3.10\n    conda activate limax\n    (limax) pip install limax --upgrade\n\n\n\nUsage\n=====\n\nCommand line tool\n-----------------\n\nAfter installation LiMAx analysis can be performed using the :code:`limax` command line tool\n\n.. code:: bash\n\n    $ limax\n    \n    \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\n    \ud83d\udc89 LIMAX ANALYSIS \ud83d\udc89\n    Version 0.2.4 (https://github.com/matthiaskoenig/limax)\n    Citation https://doi.org/10.5281/zenodo.7382669\n    \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\n    Example processing single LiMAx raw file:\n        limax -i patient1.csv -o .\n    Example processing folder with LiMAx raw files:\n        limax -i limax_examples -o limax_examples_processed\n    \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\n    Required argument '--input' missing.\n    Usage: commands.py [options]\n    \n    Options:\n      -h, --help            show this help message and exit\n      -i INPUT_PATH, --input=INPUT_PATH\n                            Path to folder with LiMAx raw files or single LiMAx\n                            raw file as '*.csv'.\n      -o OUTPUT_DIR, --output_dir=OUTPUT_DIR\n                            Path to output folder with processed LiMAx files as\n                            '*.json'.\n    \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\n\n\nCommon problems\n===============\nOn MacOs the terminal app requires permissions to access files, i.e.\n\n.. code:: bash\n\n    PermissionError: [Errno 1] Operation not permitted\n\nThis can be solved by changing the permissions of the terminal app via https://stackoverflow.com/questions/58479686/permissionerror-errno-1-operation-not-permitted-after-macos-catalina-update:\n\n* Go to System Preference->Security and Privacy.\n* On the left side click on Full Disk Access\n* Now click on bottom left lock icon and enter password to make changes, see Label 3\n* Now click on + sign button\n* Browse the terminal app from Application -> Utilities\n\n\nLicense\n=======\n* Source Code: `LGPLv3 <http://opensource.org/licenses/LGPL-3.0>`__\n* Documentation: `CC BY-SA 4.0 <http://creativecommons.org/licenses/by-sa/4.0/>`__\n\nThe limax source is released under both the GPL and LGPL licenses version 2 or\nlater. You may choose which license you choose to use the software under.\n\nThis program is free software: you can redistribute it and/or modify it under\nthe terms of the GNU General Public License or the GNU Lesser General Public\nLicense as published by the Free Software Foundation, either version 2 of the\nLicense, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nFunding\n=======\nThis project is supported by the Federal Ministry of Education and Research (BMBF, Germany)\nwithin the research network Systems Medicine of the Liver (**LiSyM**, grant number 031L0054) \nand by the German Research Foundation (DFG) within the Research Unit Programme FOR 5151 \n\"`QuaLiPerF <https://qualiperf.de>`__ (Quantifying Liver Perfusion-Function Relationship in Complex Resection - \nA Systems Medicine Approach)\" by grant number 436883643 and by grant number 465194077 (Priority Programme SPP 2311, Subproject SimLivA).\n\nDevelop version\n===============\nThe latest develop version can be installed via::\n\n    pip install git+https://github.com/matthiaskoenig/limax.git@develop\n\nOr via cloning the repository and installing via::\n\n    git clone https://github.com/matthiaskoenig/limax.git\n    cd limax\n    pip install -e .\n\nTo install for development use::\n\n    pip install -e .[development]\n\n\n\u00a9 2022-2023 Matthias K\u00f6nig, Eva Kindler & Hans-Michael Tautenhahn\n",
    "bugtrack_url": null,
    "license": "LGPL-3.0",
    "summary": "limax are python utilities for working with LiMAx.",
    "version": "0.3.1",
    "split_keywords": [
        "modeling",
        "liver",
        "limax"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "553257d7b81698605bd92a20a2c1102f28e13ac37a16493c8978c026221f4688",
                "md5": "a6b98c2d4dc62008f9cecd02efc695f6",
                "sha256": "2444bea99b483f61ed3043818192a42973d9dc32e106f20f83ee0005a2ed92ea"
            },
            "downloads": -1,
            "filename": "limax-0.3.1-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a6b98c2d4dc62008f9cecd02efc695f6",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.8",
            "size": 1126435,
            "upload_time": "2023-02-02T13:02:13",
            "upload_time_iso_8601": "2023-02-02T13:02:13.962635Z",
            "url": "https://files.pythonhosted.org/packages/55/32/57d7b81698605bd92a20a2c1102f28e13ac37a16493c8978c026221f4688/limax-0.3.1-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "559f3391a4ca53478d3da75c6101610ab891f4f12a35e4cc060b7252aeba3973",
                "md5": "7d2b96d0e07ad986402968ff790fd1b9",
                "sha256": "9fff19fbe59f4578a6b628db8e136c98b1e6bed7c2aa3e40d82d4aa49bb28e52"
            },
            "downloads": -1,
            "filename": "limax-0.3.1.tar.gz",
            "has_sig": false,
            "md5_digest": "7d2b96d0e07ad986402968ff790fd1b9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 1122525,
            "upload_time": "2023-02-02T13:02:16",
            "upload_time_iso_8601": "2023-02-02T13:02:16.308846Z",
            "url": "https://files.pythonhosted.org/packages/55/9f/3391a4ca53478d3da75c6101610ab891f4f12a35e4cc060b7252aeba3973/limax-0.3.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-02-02 13:02:16",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "matthiaskoenig",
    "github_project": "limax",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "limax"
}
        
Elapsed time: 0.03902s