SELDOMpy


NameSELDOMpy JSON
Version 1.0 PyPI version JSON
download
home_pagehttps://github.com/lupralo31/SELDOMpy
SummaryDynamic modelling of cellular signalling networks.
upload_time2023-08-28 13:45:39
maintainer
docs_urlNone
authorLuis Prado
requires_python
licenseGPLv3
keywords seldompy seldom dynamic modelling cellular signalling networks biomedical engineering
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # About SELDOMpy

SELDOMpy is a Python package that generates dynamic models of cell signalling networks from experimental data. The SELDOMpy algorithm consists of the following steps:
- **Calculation of the adjacency matrix** of the network from the mutual information between all possible pairs of nodes.
- **Generation of an initial dynamic network model** from the adjacency matrix above.
- **Optimisation** of the value obtained from the simulation of the model.
- **Reduction** of the number of model arrow arcs using the Akaike criterion.
- **Simulation and saving** of the final model and graphs obtained from its simulation. 

SELDOMpy implements the algorithm from the R package [SELDOM](https://zenodo.org/record/250558).
The purpose of SELDOMpy is to create a more accessible and user-friendly tool than SELDOM. 
It works well with simple networks, but it is not as efficient as SELDOM in larger networks since it does not have such specific optimization tools.

SELDOMpy was created by **Luis Prado López**, <pradolopezluis@gmail.com>, under the supervision of [Alejandro F. Villaverde](http://afvillaverde.webs.uvigo.gal/), <afvillaverde@uvigo.gal> and [David Saque Henriques](https://www.iim.csic.es/es/personal/david-saque), <davidh@iim.csic.es>. 

## Installation and requirements
SELDOMpy requires Python 3. 
It also consists of .c files, so there are 2 installation possibilities:

a) If you are using a **64-bit Windows with Python 3.8**: You can install SELDOMpy directly using the following command: 

   `pip install SELDOMpy`

b) If you are using **other Python versions and operating systems**: You need to have a C compiler installed (such as Visual Studio) and follow the commands below:
  
  `pip install numpy`
  
  `python -m pip install pip==22.0.4`
  
  `pip install SELDOMpy`
  
  Once installed you can update pip to the latest version if you wish using `python -m pip install --upgrade pip`

## Getting started
The first thing is to install the package as indicated above depending on your terminal.
To be able to use SELDOMpy in your Python project you can import all its functions with the following command: 

`from SELDOMpy import *`

Once imported, you can perform the steps indicated in the first section following the PDF manual that includes the package.
 
## Results
The results of the final cell signaling network model are saved in a binary file (in the path indicated by the user). These results can be imported into Python if the user wishes and thus check the values of the model.
You can also plot the results obtained from the simulation of the final model together with the experimental measurements of the nodes to verify that the modeling was performed correctly using the _plot_results_ function. 

More information about SELDOMpy can be found in the [SELDOMpy manual](https://github.com/lupralo31/SELDOMpy/blob/main/SELDOMpy/doc/SELDOMpy_manual.pdf)

## Disclaimer

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3 of the License.
    
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.
 
You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/lupralo31/SELDOMpy",
    "name": "SELDOMpy",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "SELDOMpy,SELDOM,dynamic modelling,cellular signalling networks,biomedical engineering",
    "author": "Luis Prado",
    "author_email": "pradolopezluis@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/ed/8c/d56a9dc40587ae6bfce50954f024f71864d3fe9604d0c4200cc5704f5688/SELDOMpy-1.0.tar.gz",
    "platform": null,
    "description": "# About SELDOMpy\r\n\r\nSELDOMpy is a Python package that generates dynamic models of cell signalling networks from experimental data. The SELDOMpy algorithm consists of the following steps:\r\n- **Calculation of the adjacency matrix** of the network from the mutual information between all possible pairs of nodes.\r\n- **Generation of an initial dynamic network model** from the adjacency matrix above.\r\n- **Optimisation** of the value obtained from the simulation of the model.\r\n- **Reduction** of the number of model arrow arcs using the Akaike criterion.\r\n- **Simulation and saving** of the final model and graphs obtained from its simulation. \r\n\r\nSELDOMpy implements the algorithm from the R package [SELDOM](https://zenodo.org/record/250558).\r\nThe purpose of SELDOMpy is to create a more accessible and user-friendly tool than SELDOM. \r\nIt works well with simple networks, but it is not as efficient as SELDOM in larger networks since it does not have such specific optimization tools.\r\n\r\nSELDOMpy was created by **Luis Prado L\u00f3pez**, <pradolopezluis@gmail.com>, under the supervision of [Alejandro F. Villaverde](http://afvillaverde.webs.uvigo.gal/), <afvillaverde@uvigo.gal> and [David Saque Henriques](https://www.iim.csic.es/es/personal/david-saque), <davidh@iim.csic.es>. \r\n\r\n## Installation and requirements\r\nSELDOMpy requires Python 3. \r\nIt also consists of .c files, so there are 2 installation possibilities:\r\n\r\na) If you are using a **64-bit Windows with Python 3.8**: You can install SELDOMpy directly using the following command: \r\n\r\n   `pip install SELDOMpy`\r\n\r\nb) If you are using **other Python versions and operating systems**: You need to have a C compiler installed (such as Visual Studio) and follow the commands below:\r\n  \r\n  `pip install numpy`\r\n  \r\n  `python -m pip install pip==22.0.4`\r\n  \r\n  `pip install SELDOMpy`\r\n  \r\n  Once installed you can update pip to the latest version if you wish using `python -m pip install --upgrade pip`\r\n\r\n## Getting started\r\nThe first thing is to install the package as indicated above depending on your terminal.\r\nTo be able to use SELDOMpy in your Python project you can import all its functions with the following command: \r\n\r\n`from SELDOMpy import *`\r\n\r\nOnce imported, you can perform the steps indicated in the first section following the PDF manual that includes the package.\r\n \r\n## Results\r\nThe results of the final cell signaling network model are saved in a binary file (in the path indicated by the user). These results can be imported into Python if the user wishes and thus check the values of the model.\r\nYou can also plot the results obtained from the simulation of the final model together with the experimental measurements of the nodes to verify that the modeling was performed correctly using the _plot_results_ function. \r\n\r\nMore information about SELDOMpy can be found in the [SELDOMpy manual](https://github.com/lupralo31/SELDOMpy/blob/main/SELDOMpy/doc/SELDOMpy_manual.pdf)\r\n\r\n## Disclaimer\r\n\r\nThis program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3 of the License.\r\n    \r\nThis 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.  \r\nSee the GNU General Public License for more details.\r\n \r\nYou should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.\r\n",
    "bugtrack_url": null,
    "license": "GPLv3",
    "summary": "Dynamic modelling of cellular signalling networks.",
    "version": "1.0",
    "project_urls": {
        "Download": "https://github.com/lupralo31/SELDOMpy/releases/download/0_9_8/SELDOMpy-0.9.8.tar.gz",
        "Homepage": "https://github.com/lupralo31/SELDOMpy"
    },
    "split_keywords": [
        "seldompy",
        "seldom",
        "dynamic modelling",
        "cellular signalling networks",
        "biomedical engineering"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cbfd951ae4a46031bbbf8524e54e3d416b1b1485eef99d01efccc8bed8d19443",
                "md5": "3bb244933ca0037ee261f1a981c5c1d5",
                "sha256": "8a213569fa04e623acbd801d5da02ee13982d04390c109c30884374c0b8e6c39"
            },
            "downloads": -1,
            "filename": "SELDOMpy-1.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3bb244933ca0037ee261f1a981c5c1d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 539218,
            "upload_time": "2023-08-28T13:45:38",
            "upload_time_iso_8601": "2023-08-28T13:45:38.415930Z",
            "url": "https://files.pythonhosted.org/packages/cb/fd/951ae4a46031bbbf8524e54e3d416b1b1485eef99d01efccc8bed8d19443/SELDOMpy-1.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed8cd56a9dc40587ae6bfce50954f024f71864d3fe9604d0c4200cc5704f5688",
                "md5": "d585e69b7c8695c805441068baa42b9c",
                "sha256": "de280ea26a6898477193c42cff0847b41fa6836c3bd6f969bfe87926af406b14"
            },
            "downloads": -1,
            "filename": "SELDOMpy-1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "d585e69b7c8695c805441068baa42b9c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 260357,
            "upload_time": "2023-08-28T13:45:39",
            "upload_time_iso_8601": "2023-08-28T13:45:39.915147Z",
            "url": "https://files.pythonhosted.org/packages/ed/8c/d56a9dc40587ae6bfce50954f024f71864d3fe9604d0c4200cc5704f5688/SELDOMpy-1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-28 13:45:39",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "lupralo31",
    "github_project": "SELDOMpy",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "seldompy"
}
        
Elapsed time: 0.20423s