SBMLKinetics


NameSBMLKinetics JSON
Version 1.1.0 PyPI version JSON
download
home_pagehttps://github.com/SunnyXu/SBMLKinetics
SummaryAnalyze SBML kinetics.
upload_time2024-02-14 22:05:44
maintainer
docs_urlNone
authorJin Xu, Joseph Hellerstein
requires_python>=3.8
licenseMIT License
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            

[![Coverage](https://codecov.io/gh/ModelEngineering/SBMLKinetics/branch/master/graph/badge.svg)](https://codecov.io/gh/ModelEngineering/SBMLKinetics)

# SBMLKinetics

SBMLKinetics is a Python package to evaluate and classify kinetics in SBML models. 
There are many possible kinetics like the zeroth order, mass action, Michaelis-Menten, 
Hill kinetics and others. This work characterizes the kinetics in the BioModels 
Database as an example to improve modeling best practices. Our tool can analyze any data sets 
with SBML files as input. Users can also use this tool to compare different data sets. For 
instance, we compare the distribution of kinetics for the signaling and metabolic networks and 
find the substantial differences between two types of networks. 

## Citing
If you are using any of the 
code, please cite the article (https://bmcbioinformatics.biomedcentral.com/articles/10.1186/s12859-023-05380-3) and the PYPI web page (https://pypi.org/project/SBMLKinetics/).

## For users
### Installation

``pip install SBMLKinetics``

## A Classification Example

Here is a classification example generated by SBMLKinetics:

<img src="https://raw.githubusercontent.com/SunnyXu/SBMLKinetics/master/docs/Figures/Fig1_curated.png" width="450" height="350">

Please see more examples in the documentation.

### Documentation
Please see the documentation at https://sunnyxu.github.io/SBMLKinetics/ for details.


## For developers
### Setup environment
- Install [spyder3](http://www.psych.mcgill.ca/labs/mogillab/anaconda2/lib/python2.7/site-packages/spyder/doc/installation.html)
- Clone the ``SBMLKinetics`` repository using ``git clone https://github.com/SunnyXu/SBMLKinetics``
- Create a virtual environment for the project.
  - ``cd SBMLKinetics``
  - ``python -m venv kv``
  - ``source kv/Scripts/activate``
(Use "\\" in windows.)
  - ``pip install -r requirements.txt``
  - ``deactivate``

To verify the setup:
- Return to the ``SBMLKinetics`` directory.
- ``source kv/Scripts/activate``
(Use "\\" in windows.)
- ``export PYTHONPATH=`pwd` ``
- ``python tests/test_simple_sbml.py``. The
tests should run without error.
(Use "\\" in windows.)

### Running Codes
- ``cd SBMLKinetics``
- ``source kv/bin/activate``
(Use "\\" in windows.)
When you're done, use ``deactivate``.

### Documentation
- ``examples/tutorial.py`` has code illustrating usage
- ``SBMLKinetics/common/*.py`` has codes for the 
SmpleSBML (``simple_sbml.py``),
Reaction (``reaction.py``),
and KineticLaw (``kinetic_law.py``).



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/SunnyXu/SBMLKinetics",
    "name": "SBMLKinetics",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "",
    "author": "Jin Xu, Joseph Hellerstein",
    "author_email": "jxu2019@uw.edu",
    "download_url": "https://files.pythonhosted.org/packages/1b/75/cc8b6d0b3747c9e1006803c7988a556cd8d9b6c4949607f4df22078c46c9/SBMLKinetics-1.1.0.tar.gz",
    "platform": null,
    "description": "\n\n[![Coverage](https://codecov.io/gh/ModelEngineering/SBMLKinetics/branch/master/graph/badge.svg)](https://codecov.io/gh/ModelEngineering/SBMLKinetics)\n\n# SBMLKinetics\n\nSBMLKinetics is a Python package to evaluate and classify kinetics in SBML models. \nThere are many possible kinetics like the zeroth order, mass action, Michaelis-Menten, \nHill kinetics and others. This work characterizes the kinetics in the BioModels \nDatabase as an example to improve modeling best practices. Our tool can analyze any data sets \nwith SBML files as input. Users can also use this tool to compare different data sets. For \ninstance, we compare the distribution of kinetics for the signaling and metabolic networks and \nfind the substantial differences between two types of networks. \n\n## Citing\nIf you are using any of the \ncode, please cite the article (https://bmcbioinformatics.biomedcentral.com/articles/10.1186/s12859-023-05380-3) and the PYPI web page (https://pypi.org/project/SBMLKinetics/).\n\n## For users\n### Installation\n\n``pip install SBMLKinetics``\n\n## A Classification Example\n\nHere is a classification example generated by SBMLKinetics:\n\n<img src=\"https://raw.githubusercontent.com/SunnyXu/SBMLKinetics/master/docs/Figures/Fig1_curated.png\" width=\"450\" height=\"350\">\n\nPlease see more examples in the documentation.\n\n### Documentation\nPlease see the documentation at https://sunnyxu.github.io/SBMLKinetics/ for details.\n\n\n## For developers\n### Setup environment\n- Install [spyder3](http://www.psych.mcgill.ca/labs/mogillab/anaconda2/lib/python2.7/site-packages/spyder/doc/installation.html)\n- Clone the ``SBMLKinetics`` repository using ``git clone https://github.com/SunnyXu/SBMLKinetics``\n- Create a virtual environment for the project.\n  - ``cd SBMLKinetics``\n  - ``python -m venv kv``\n  - ``source kv/Scripts/activate``\n(Use \"\\\\\" in windows.)\n  - ``pip install -r requirements.txt``\n  - ``deactivate``\n\nTo verify the setup:\n- Return to the ``SBMLKinetics`` directory.\n- ``source kv/Scripts/activate``\n(Use \"\\\\\" in windows.)\n- ``export PYTHONPATH=`pwd` ``\n- ``python tests/test_simple_sbml.py``. The\ntests should run without error.\n(Use \"\\\\\" in windows.)\n\n### Running Codes\n- ``cd SBMLKinetics``\n- ``source kv/bin/activate``\n(Use \"\\\\\" in windows.)\nWhen you're done, use ``deactivate``.\n\n### Documentation\n- ``examples/tutorial.py`` has code illustrating usage\n- ``SBMLKinetics/common/*.py`` has codes for the \nSmpleSBML (``simple_sbml.py``),\nReaction (``reaction.py``),\nand KineticLaw (``kinetic_law.py``).\n\n\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "Analyze SBML kinetics.",
    "version": "1.1.0",
    "project_urls": {
        "Homepage": "https://github.com/SunnyXu/SBMLKinetics"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f70c51fad442c3f80c099edc78bbae23ce2b22d616e9dbebd8fd9102f22b6f7e",
                "md5": "a4e0e33c3d7c821ad7ef3c35c7c7e6cf",
                "sha256": "e75f011ce0a056470010126c51321855124929534e9f851859e5fda874529d8c"
            },
            "downloads": -1,
            "filename": "SBMLKinetics-1.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a4e0e33c3d7c821ad7ef3c35c7c7e6cf",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 87147712,
            "upload_time": "2024-02-14T22:05:39",
            "upload_time_iso_8601": "2024-02-14T22:05:39.452484Z",
            "url": "https://files.pythonhosted.org/packages/f7/0c/51fad442c3f80c099edc78bbae23ce2b22d616e9dbebd8fd9102f22b6f7e/SBMLKinetics-1.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b75cc8b6d0b3747c9e1006803c7988a556cd8d9b6c4949607f4df22078c46c9",
                "md5": "a27cf0849d1479a57f05f0874f7330b2",
                "sha256": "cd5b92d89b891579694294012b95b626e745af0599876c8de6723023e089d135"
            },
            "downloads": -1,
            "filename": "SBMLKinetics-1.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "a27cf0849d1479a57f05f0874f7330b2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 43579598,
            "upload_time": "2024-02-14T22:05:44",
            "upload_time_iso_8601": "2024-02-14T22:05:44.665646Z",
            "url": "https://files.pythonhosted.org/packages/1b/75/cc8b6d0b3747c9e1006803c7988a556cd8d9b6c4949607f4df22078c46c9/SBMLKinetics-1.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-14 22:05:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "SunnyXu",
    "github_project": "SBMLKinetics",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "sbmlkinetics"
}
        
Elapsed time: 0.18883s