copasi-basico


Namecopasi-basico JSON
Version 0.67 PyPI version JSON
download
home_pagehttps://github.com/copasi/basico
SummarySimplified COPASI interface for python
upload_time2024-04-22 12:42:24
maintainerNone
docs_urlNone
authorCOPASI Team
requires_pythonNone
licenseArtistic-2.0
keywords copasi sbml systems biology
VCS
bugtrack_url
requirements python-copasi pandas scipy numpy matplotlib PyYAML
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![Python package](https://github.com/copasi/basico/workflows/Python%20package/badge.svg) [![Documentation Status](https://readthedocs.org/projects/basico/badge/?version=latest)](https://basico.readthedocs.io/en/latest/?badge=latest) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=copasi_basico&metric=alert_status)](https://sonarcloud.io/dashboard?id=copasi_basico) [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/copasi/basico.git/HEAD?filepath=docs/notebooks/index.ipynb) [![DOI](https://zenodo.org/badge/148472105.svg)](https://zenodo.org/badge/latestdoi/148472105) [![codecov](https://codecov.io/gh/copasi/basico/branch/master/graph/badge.svg?token=MG54YU29JQ)](https://codecov.io/gh/copasi/basico) [![DOI](https://joss.theoj.org/papers/10.21105/joss.05553/status.svg)](https://doi.org/10.21105/joss.05553)


## BasiCO
This project hosts a simplified python interface to COPASI. While all functionality from COPASI
is exposed via automatically generated SWIG wrappers, this package aims to add a layer on top of
that, to hide most of the complexity away when calling COPASI functions.   

![COPASI Logo](https://raw.githubusercontent.com/copasi/basico/master/./docs/_static/COPASI_Conly_176x176.png)  

### Installation
The package works with python 3.7+, provided the following packages are installed: 

* python-copasi
* pandas
* numpy
* matplotlib
* PyYAML

that are freely available on pypi, they will be automatically installed when installing via setup.py.

Once done, just have the `basico` directory 
in the `PYTHONPATH` or `sys.path`.

Or you could directly install everything you need right from pypi 

    pip install copasi-basico

from this git repo:

    pip install git+https://github.com/copasi/basico.git

### Usage

The following modules are available: 

* `model_io`: functionality, for creating / loading / saving models.
* `model_info`: functionality to getting / setting model elements from pandas dataframes  
* `task_timecourse`: a wrapper for running time course simulations
* `task_parameter_estimation`: a wrapper for parameter estimation
* `task_optimization`: a wrapper for computing optimizations with arbitrary objective functions
* `task_steadystate`: a wrapper for computing steady states
* `task_scan`: a wrapper for parameter scans / repeats
* `task_sensitivities`: a wrapper for computing sensitivities
* `compartment_array_tools`: utility for plotting and the like

Documentation is continually updated at: <https://basico.readthedocs.org/>. 

Please use the [issue tracker](https://github.com/copasi/basico/issues) for bug reports and feature requests.

### Run the tests

basico comes with a number of unit tests based on pytest. To run them, change to the 
root directory of this project and run: 

    python3 -m pytest

that will ensure that `basico` is in the python path, and the test run as expected. Some 
tests require more data, that is not included in the repository, such as tests for PEtab 
and petab select, for those, specify the environment variables to the directories where
the files are for example: 

    PETAB_BENCHMARK_MODELS=/path/to/petab/benchmark/models
    PETAB_SELECT_MODELS=/path/to/petab/select/models

for example: 

    PETAB_BENCHMARK_MODELS=../Benchmark-Models-PEtab/Benchmark-Models PETAB_SELECT_MODELS=../petab_select/test_cases  python3 -m pytest

### Acknowledgements
This project has been possible thanks to the BMBF funded de.NBI initiative (031L0104A):

![de.NBI logo](https://raw.githubusercontent.com/copasi/basico/master/./docs/_static/deNBI_logo.jpg)

### License

The packages available on this page are provided under the 
[Artistic License 2.0](http://copasi.org/Download/License/), 
which is an [OSI](http://www.opensource.org/) approved license. This license 
allows non-commercial and commercial use free of charge.
 

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/copasi/basico",
    "name": "copasi-basico",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "copasi sbml systems biology",
    "author": "COPASI Team",
    "author_email": "developers@copasi.org",
    "download_url": "https://files.pythonhosted.org/packages/85/84/735be9b7f86dcba9fed4a32886598ef83d20baa6e60e547d69871a4336c3/copasi_basico-0.67.tar.gz",
    "platform": "Windows",
    "description": "![Python package](https://github.com/copasi/basico/workflows/Python%20package/badge.svg) [![Documentation Status](https://readthedocs.org/projects/basico/badge/?version=latest)](https://basico.readthedocs.io/en/latest/?badge=latest) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=copasi_basico&metric=alert_status)](https://sonarcloud.io/dashboard?id=copasi_basico) [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/copasi/basico.git/HEAD?filepath=docs/notebooks/index.ipynb) [![DOI](https://zenodo.org/badge/148472105.svg)](https://zenodo.org/badge/latestdoi/148472105) [![codecov](https://codecov.io/gh/copasi/basico/branch/master/graph/badge.svg?token=MG54YU29JQ)](https://codecov.io/gh/copasi/basico) [![DOI](https://joss.theoj.org/papers/10.21105/joss.05553/status.svg)](https://doi.org/10.21105/joss.05553)\n\n\n## BasiCO\nThis project hosts a simplified python interface to COPASI. While all functionality from COPASI\nis exposed via automatically generated SWIG wrappers, this package aims to add a layer on top of\nthat, to hide most of the complexity away when calling COPASI functions.   \n\n![COPASI Logo](https://raw.githubusercontent.com/copasi/basico/master/./docs/_static/COPASI_Conly_176x176.png)  \n\n### Installation\nThe package works with python 3.7+, provided the following packages are installed: \n\n* python-copasi\n* pandas\n* numpy\n* matplotlib\n* PyYAML\n\nthat are freely available on pypi, they will be automatically installed when installing via setup.py.\n\nOnce done, just have the `basico` directory \nin the `PYTHONPATH` or `sys.path`.\n\nOr you could directly install everything you need right from pypi \n\n    pip install copasi-basico\n\nfrom this git repo:\n\n    pip install git+https://github.com/copasi/basico.git\n\n### Usage\n\nThe following modules are available: \n\n* `model_io`: functionality, for creating / loading / saving models.\n* `model_info`: functionality to getting / setting model elements from pandas dataframes  \n* `task_timecourse`: a wrapper for running time course simulations\n* `task_parameter_estimation`: a wrapper for parameter estimation\n* `task_optimization`: a wrapper for computing optimizations with arbitrary objective functions\n* `task_steadystate`: a wrapper for computing steady states\n* `task_scan`: a wrapper for parameter scans / repeats\n* `task_sensitivities`: a wrapper for computing sensitivities\n* `compartment_array_tools`: utility for plotting and the like\n\nDocumentation is continually updated at: <https://basico.readthedocs.org/>. \n\nPlease use the [issue tracker](https://github.com/copasi/basico/issues) for bug reports and feature requests.\n\n### Run the tests\n\nbasico comes with a number of unit tests based on pytest. To run them, change to the \nroot directory of this project and run: \n\n    python3 -m pytest\n\nthat will ensure that `basico` is in the python path, and the test run as expected. Some \ntests require more data, that is not included in the repository, such as tests for PEtab \nand petab select, for those, specify the environment variables to the directories where\nthe files are for example: \n\n    PETAB_BENCHMARK_MODELS=/path/to/petab/benchmark/models\n    PETAB_SELECT_MODELS=/path/to/petab/select/models\n\nfor example: \n\n    PETAB_BENCHMARK_MODELS=../Benchmark-Models-PEtab/Benchmark-Models PETAB_SELECT_MODELS=../petab_select/test_cases  python3 -m pytest\n\n### Acknowledgements\nThis project has been possible thanks to the BMBF funded de.NBI initiative (031L0104A):\n\n![de.NBI logo](https://raw.githubusercontent.com/copasi/basico/master/./docs/_static/deNBI_logo.jpg)\n\n### License\n\nThe packages available on this page are provided under the \n[Artistic License 2.0](http://copasi.org/Download/License/), \nwhich is an [OSI](http://www.opensource.org/) approved license. This license \nallows non-commercial and commercial use free of charge.\n \n",
    "bugtrack_url": null,
    "license": "Artistic-2.0",
    "summary": "Simplified COPASI interface for python",
    "version": "0.67",
    "project_urls": {
        "Github": "https://github.com/copasi/basico",
        "Homepage": "https://github.com/copasi/basico",
        "Issues": "https://github.com/copasi/basico/issues",
        "Try it online": "https://colab.research.google.com/github/copasi/basico/blob/master/docs/notebooks/index_colab.ipynb"
    },
    "split_keywords": [
        "copasi",
        "sbml",
        "systems",
        "biology"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df3d446ed62225e92a5bfa4a2537da18a45d09e5911dcdcc9db97a3aa542e36f",
                "md5": "d0c465d240e2e5cab5dd478bed7d93f5",
                "sha256": "39e2da5f305650df472c5d6999a52373c7a6e014a24d1837541ff640341a0009"
            },
            "downloads": -1,
            "filename": "copasi_basico-0.67-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d0c465d240e2e5cab5dd478bed7d93f5",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 183601,
            "upload_time": "2024-04-22T12:42:22",
            "upload_time_iso_8601": "2024-04-22T12:42:22.214933Z",
            "url": "https://files.pythonhosted.org/packages/df/3d/446ed62225e92a5bfa4a2537da18a45d09e5911dcdcc9db97a3aa542e36f/copasi_basico-0.67-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8584735be9b7f86dcba9fed4a32886598ef83d20baa6e60e547d69871a4336c3",
                "md5": "50e48e409e665682470858eab37d1cca",
                "sha256": "924567663def73841975c663984b6b22e6e9145e9f79b80263efd785c4ef813d"
            },
            "downloads": -1,
            "filename": "copasi_basico-0.67.tar.gz",
            "has_sig": false,
            "md5_digest": "50e48e409e665682470858eab37d1cca",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 209296,
            "upload_time": "2024-04-22T12:42:24",
            "upload_time_iso_8601": "2024-04-22T12:42:24.667523Z",
            "url": "https://files.pythonhosted.org/packages/85/84/735be9b7f86dcba9fed4a32886598ef83d20baa6e60e547d69871a4336c3/copasi_basico-0.67.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-22 12:42:24",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "copasi",
    "github_project": "basico",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "python-copasi",
            "specs": []
        },
        {
            "name": "pandas",
            "specs": []
        },
        {
            "name": "scipy",
            "specs": []
        },
        {
            "name": "numpy",
            "specs": []
        },
        {
            "name": "matplotlib",
            "specs": []
        },
        {
            "name": "PyYAML",
            "specs": []
        }
    ],
    "lcname": "copasi-basico"
}
        
Elapsed time: 0.24386s