spatialpy


Namespatialpy JSON
Version 1.2.2 PyPI version JSON
download
home_pagehttps://spatialpy.github.io/SpatialPy/
SummaryPython Interface for Spatial Stochastic Biochemical Simulations
upload_time2023-04-27 20:32:13
maintainerSee AUTHORS
docs_urlNone
authorSee AUTHORS
requires_python
licenseGPL-3.0-only
keywords biochemical simulation gillespie algorithm stochastic simulation biology spatial simulation rdme
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="left">
<img src="https://raw.githubusercontent.com/StochSS/SpatialPy/main/.graphics/SpatialPy_logo.png">
</p>

SpatialPy is a Python 3 package for simulation of spatial deterministic/stochastic reaction-diffusion-advection problems embedded in Lagrangian reference frame particle based fluid dynamics domain

This package is intended to replace the PyURDME software https://github.com/pyurdme/pyurdme and will feature both a NSM solver for RDME simulation on static domains and a sSSA-SDPD particle based fluid dynamics solver as described in the publication "A hybrid smoothed dissipative particle dynamics (SDPD) spatial stochastic simulation algorithm (sSSA) for advection–diffusion–reaction problems" by Drawert, Jacob, Li, Yi, Petzold https://www.sciencedirect.com/science/article/pii/S0021999118307101

<table><tr><td><b>
<img width="20%" align="right" src="https://raw.githubusercontent.com/SpatialPy/SpatialPy/main/.graphics/stochss-logo.png">
<a href="https://docs.google.com/forms/d/12tAH4f8CJ-3F-lK44Q9uQHFio_mGoK0oY829q5lD7i4/viewform">PLEASE REGISTER AS A USER</a>, so that we can prove SpatialPy has many users when we seek funding to support development. SpatialPy is part of the <a href="http://www.stochss.org">StochSS</a> project.
</td></tr></table>

![PyPI - License](https://img.shields.io/pypi/l/spatialpy.svg?color=informational)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/spatialpy.svg)
[![PyPI](https://img.shields.io/pypi/v/spatialpy.svg)](https://pypi.org/project/spatialpy)
![PyPI - Downloads](https://img.shields.io/pypi/dm/SpatialPy?color=informational&label=pypi%20downloads)

Table of contents
-----------------

- [Table of contents](#table-of-contents)
- [Installation](#installation)
  - [_Using PyPI_](#using-pypi)
  - [_Using the source code repository_](#using-the-source-code-repository)
- [Usage](#usage)
  - [_Simple example to illustrate the use of SpatialPy_](#simple-example-to-illustrate-the-use-of-spatialpy)
<!--
  - [_Docker environment_](#docker-environment)
  - [_Debugging_](#debugging)
  - [_Profiling_](#profiling)
-->
- [Getting help](#getting-help)
- [Contributing](#contributing)
- [License](#license)
- [Authors and history](#authors-and-history)
- [Acknowledgments](#acknowledgments)

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

SpatialPy can be installed on your computer using different methods, as described below.

### _Using PyPI_

On **Linux**, **macOS**, and **Windows** operating systems, you should be able to install SpatialPy with `pip`. Please review the official pip [documentation](https://pip.pypa.io/en/stable/installing/) for installation instructions and additional information.

Then, to install SpatialPy from the Python package repository, run the following command:
```sh
python3 -m pip install spatialpy --user --upgrade
```

### _Using the source code repository_

As an alternative to getting it from PyPI, you can instruct `pip` to install SpatialPy directly from the GitHub repository:
```sh
python3 -m pip install https://github.com/StochSS/SpatialPy/archive/main.zip --user --upgrade
```

As a final alternative, you can first use `git` to clone a copy of the SpatialPy source tree from the GitHub repository to your local computer disk, and then install SpatialPy using that copy:
```sh
git clone https://github.com/StochSS/SpatialPy.git
cd SpatialPy
python3 -m pip install  .  --user --upgrade
```

Usage
-----

SpatialPy provides simple object-oriented abstractions for defining a model of a biochemical system and simulating that model using efficient stochastic simulation algorithms.  The basic steps to use SpatialPy are:

1. Create a `SpatialPy.Model` containing molecular species, parameters, and reactions.
2. Invoke the model's `.run()` method.

The `run()` method can be customized using keyword arguments to select different solvers, random seed, data return type and more.  For more detailed examples on how to use SpatialPy, please see the Jupyter notebooks contained in the [examples](https://github.com/StochSS/SpatialPy/tree/main/examples) subdirectory.

### _Simple example to illustrate the use of SpatialPy_

In SpatialPy, a model is expressed as an object. Components, such as the domains, reactions, biochemical species, and characteristics such as the time span for simulation, are all defined within the model. The following Python code represents our spatial birth death model using SpatialPy's facility:

```python
def create_birth_death(parameter_values=None):
    # First call the gillespy2.Model initializer.
    model = spatialpy.Model(name='Spatial Birth-Death')
    
    # Define Domain Type IDs as constants of the Model
    model.HABITAT = "Habitat"

    # Define domain points and attributes of a regional space for simulation.
    domain = spatialpy.Domain.create_2D_domain(
        xlim=(0, 1), ylim=(0, 1), numx=10, numy=10, type_id=model.HABITAT, fixed=True
    )
    model.add_domain(domain)

    # Define variables for the biochemical species representing Rabbits.
    Rabbits = spatialpy.Species(name='Rabbits', diffusion_coefficient=0.1)
    model.add_species(Rabbits)

    # Scatter the initial condition for Rabbits randomly over all types.
    init_rabbit_pop = spatialpy.ScatterInitialCondition(species='Rabbits', count=100)
    model.add_initial_condition(init_rabbit_pop)

    # Define parameters for the rates of creation and destruction.
    kb = spatialpy.Parameter(name='k_birth', expression=10)
    kd = spatialpy.Parameter(name='k_death', expression=0.1)
    model.add_parameter([kb, kd])

    # Define reactions channels which cause the system to change over time.
    # The list of reactants and products for a Reaction object are each a
    # Python dictionary in which the dictionary keys are Species objects
    # and the values are stoichiometries of the species in the reaction.
    birth = spatialpy.Reaction(name='birth', reactants={}, products={"Rabbits":1}, rate="k_birth")
    death = spatialpy.Reaction(name='death', reactants={"Rabbits":1}, products={}, rate="k_death")
    model.add_reaction([birth, death])

    # Set the timespan of the simulation.
    tspan = spatialpy.TimeSpan.linspace(t=10, num_points=11, timestep_size=1)
    model.timespan(tspan)
    return model
```

Given the model creation function above, the model can be simulated by first instantiating the model object, and then invoking the run() method on the object. The following code will run the model once to produce a sample trajectory:

```python
model = create_birth_death()
results = model.run()
```

The results are then stored in a class `Results` object for single trajectory or for multiple trajectories.  Results can be plotted with plotly (offline) using `plot_species()` or in matplotlib using `plot_species(use_matplotlib=True)`.  For additional plotting options such as plotting from a selection of species, or statistical plotting, please see the documentation.:

```python
results.plot_species(species='Rabbits', t_val=10, use_matplotlib=True)
```

<p align="center">
<img width="500px" src="https://raw.githubusercontent.com/StochSS/SpatialPy/main/.graphics/birth-death-example-plot.png">
</p>

<!-- 
### Docker environment (DOES NOT WORK)

You can use Docker to create a repeatable environment for developing and debugging SpatialPy. The supplied Dockerfile starts a jupyter server with SpatialPy dependencies installed.

If you have Docker Compose: `docker-compose build && docker-compose up`

Otherwise:

```bash
docker build -t spatialpy:latest .
docker run -v ./:/home/jovyan/spatialpy -v ./tmp:/tmp -p 8888:8888 -p 5000:5000
```

The SpatialPy repo is mounted into /home/jovyan so you can import it in the usual way for development (see examples).

Any changes you make to your local codebase are reflected in the docker container. Note that you DO NOT need to restart the docker container or even re-import spatialpy to see source changes take effect in jupyter notebooks.

The `/tmp` directory is also mounted for easy access to build and result directories.

### Debugging

In order to compile the solver binary for use by the debugger, run `solver.compile()` with `debug=True`. This will inject the `-g` flag into the `gcc` command that compiles the solver, enabling gdb debug information.

You can invoke `solver.run_debugger()` anytime after you instantiate a solver in Python to start up a new session of gdbgui. The debugger will be available at http://127.0.0.1:5000.


### Profiling

To enable profiling, both `solver.compile()` and `solver.run()` need to be invoked with `profile=True`. If you don't run `solver.compile()` explicitly, invoking `solver.run()` with `profile=True` will run `compile()` correctly for you.
-->

Getting help
------------

SpatialPy's [online documentation](https://stochss.github.io/SpatialPy) provides more details about using the software.  If you find any problem with SpatialPy or the documentation, please report it using the [GitHub issue tracker](https://github.com/StochSS/SpatialPy/issues) for this repository.  You can also contact Dr. [Brian Drawert](http://www.cs.unca.edu/~drawert) directly with questions and suggestions.

Contributing
------------

We would be happy to receive your help and participation with enhancing SpatialPy! Please follow the guidelines described in [CONTRIBUTING.md](https://github.com/StochSS/SpatialPy/tree/main/CONTRIBUTING.md).

New developments happen primarily in the [`develop`](https://github.com/StochSS/SpatialPy/commits/develop) branch.  New releases are put in the `main` branch.

<p align="center">

| Main Branch   | Develop Branch |
|:---------------:|:--------------:|
| [![Build Status](https://github.com/StochSS/SpatialPy/actions/workflows/run-tests.yml/badge.svg)](https://github.com/StochSS/SpatialPy/actions/workflows/run-tests.yml) | [![Build Status](https://github.com/StochSS/SpatialPy/actions/workflows/run-tests.yml/badge.svg?branch=develop)](https://github.com/StochSS/SpatialPy/actions/workflows/run-tests.yml)

License
-------

SpatialPy is licensed under the GNU General Public License version 3.  Please see the file [LICENSE](https://github.com/StochSS/SpatialPy/blob/main/LICENSE) for more information.

Authors and history
---------------------------

* [**Dr. Brian Drawert** ](https://github.com/briandrawert)
* [**Dr. Kevin Sanft**](https://github.com/kevinsanft)
* [**Sean Matthew**](https://github.com/seanebum)
* [**Evie Hilton**](https://github.com/eviehilton)
* [**Bryan Rumsey**](https://github.com/BryanRumsey)
* [**Bruno Jacob**](https://github.com/brunopjacob)
* [**Mason Kidwell**](https://github.com/makdl)
* [**Matthew Geiger**](https://github.com/popensesame)

Acknowledgments
---------------

This work has been funded by National Institutes of Health (NIH) NIBIB Award No. 2R01EB014877-04A1.

SpatialPy uses numerous open-source packages, without which it would have been effectively impossible to develop this software with the resources we had.  We want to acknowledge this debt.  In alphabetical order, the packages are:

* [Jupyter](https://jupyter.org) &ndash; web application for creating documents containing code, visualizations and narrative text
* [MatplotLib](https://matplotlib.org/index.html) &ndash; Python plotting library
* [Plotly](https://plot.ly/) &ndash; Graphing library for making interactive, publication-quality graphs
* [Numpy](https://www.numpy.org/) &ndash; the fundamental package for scientific computing with Python
* [Scipy](https://www.scipy.org/) &ndash; Python-based ecosystem of open-source software for mathematics, science, and engineering

Finally, we are grateful for institutional resources made available by the [University of North Carolina at Asheville](https://www.unca.edu), the [University of California at Santa Barbara](https://ucsb.edu), [Uppsala University](https://www.it.uu.se), and the [California Institute of Technology](https://www.caltech.edu).

<div align="center">
  <a href="https://www.nigms.nih.gov">
    <img width="100" height="100" src="https://raw.githubusercontent.com/StochSS/SpatialPy/develop/.graphics/US-NIH-NIGMS-Logo.png">
  </a>
  &nbsp;&nbsp;
  <a href="https://www.unca.edu">
    <img height="102" src="https://raw.githubusercontent.com/StochSS/SpatialPy/develop/.graphics/UNCASEAL_blue.png">
  </a>
  &nbsp;&nbsp;
  <a href="https://www.ucsb.edu">
    <img height="108" src="https://raw.githubusercontent.com/StochSS/SpatialPy/develop/.graphics/ucsb-seal-navy.jpg">
  </a>
  &nbsp;&nbsp;
  <a href="https://www.it.uu.se">
    <img height="115" src="https://raw.githubusercontent.com/StochSS/SpatialPy/develop/.graphics/uppsala-universitet-logo-svg-vector.png">
  </a>
  &nbsp;&nbsp;
  <a href="https://www.caltech.edu">
    <img width="115" src="https://raw.githubusercontent.com/StochSS/SpatialPy/develop/.graphics/caltech-round.png">
  </a>
</div>

            

Raw data

            {
    "_id": null,
    "home_page": "https://spatialpy.github.io/SpatialPy/",
    "name": "spatialpy",
    "maintainer": "See AUTHORS",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "bdrawert@unca.edu",
    "keywords": "biochemical simulation,Gillespie algorithm,stochastic simulation,biology,spatial simulation,RDME",
    "author": "See AUTHORS",
    "author_email": "bdrawert@unca.edu",
    "download_url": "https://files.pythonhosted.org/packages/79/1d/5463561e01f2dc6532b8dcbdf5d86f2a7afaf94159dbe6e3f29afd32a051/spatialpy-1.2.2.tar.gz",
    "platform": null,
    "description": "<p align=\"left\">\n<img src=\"https://raw.githubusercontent.com/StochSS/SpatialPy/main/.graphics/SpatialPy_logo.png\">\n</p>\n\nSpatialPy is a Python 3 package for simulation of spatial deterministic/stochastic reaction-diffusion-advection problems embedded in Lagrangian reference frame particle based fluid dynamics domain\n\nThis package is intended to replace the PyURDME software https://github.com/pyurdme/pyurdme and will feature both a NSM solver for RDME simulation on static domains and a sSSA-SDPD particle based fluid dynamics solver as described in the publication \"A hybrid smoothed dissipative particle dynamics (SDPD) spatial stochastic simulation algorithm (sSSA) for advection\u2013diffusion\u2013reaction problems\" by Drawert, Jacob, Li, Yi, Petzold https://www.sciencedirect.com/science/article/pii/S0021999118307101\n\n<table><tr><td><b>\n<img width=\"20%\" align=\"right\" src=\"https://raw.githubusercontent.com/SpatialPy/SpatialPy/main/.graphics/stochss-logo.png\">\n<a href=\"https://docs.google.com/forms/d/12tAH4f8CJ-3F-lK44Q9uQHFio_mGoK0oY829q5lD7i4/viewform\">PLEASE REGISTER AS A USER</a>, so that we can prove SpatialPy has many users when we seek funding to support development. SpatialPy is part of the <a href=\"http://www.stochss.org\">StochSS</a> project.\n</td></tr></table>\n\n![PyPI - License](https://img.shields.io/pypi/l/spatialpy.svg?color=informational)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/spatialpy.svg)\n[![PyPI](https://img.shields.io/pypi/v/spatialpy.svg)](https://pypi.org/project/spatialpy)\n![PyPI - Downloads](https://img.shields.io/pypi/dm/SpatialPy?color=informational&label=pypi%20downloads)\n\nTable of contents\n-----------------\n\n- [Table of contents](#table-of-contents)\n- [Installation](#installation)\n  - [_Using PyPI_](#using-pypi)\n  - [_Using the source code repository_](#using-the-source-code-repository)\n- [Usage](#usage)\n  - [_Simple example to illustrate the use of SpatialPy_](#simple-example-to-illustrate-the-use-of-spatialpy)\n<!--\n  - [_Docker environment_](#docker-environment)\n  - [_Debugging_](#debugging)\n  - [_Profiling_](#profiling)\n-->\n- [Getting help](#getting-help)\n- [Contributing](#contributing)\n- [License](#license)\n- [Authors and history](#authors-and-history)\n- [Acknowledgments](#acknowledgments)\n\nInstallation\n------------\n\nSpatialPy can be installed on your computer using different methods, as described below.\n\n### _Using PyPI_\n\nOn **Linux**, **macOS**, and **Windows** operating systems, you should be able to install SpatialPy with `pip`. Please review the official pip [documentation](https://pip.pypa.io/en/stable/installing/) for installation instructions and additional information.\n\nThen, to install SpatialPy from the Python package repository, run the following command:\n```sh\npython3 -m pip install spatialpy --user --upgrade\n```\n\n### _Using the source code repository_\n\nAs an alternative to getting it from PyPI, you can instruct `pip` to install SpatialPy directly from the GitHub repository:\n```sh\npython3 -m pip install https://github.com/StochSS/SpatialPy/archive/main.zip --user --upgrade\n```\n\nAs a final alternative, you can first use `git` to clone a copy of the SpatialPy source tree from the GitHub repository to your local computer disk, and then install SpatialPy using that copy:\n```sh\ngit clone https://github.com/StochSS/SpatialPy.git\ncd SpatialPy\npython3 -m pip install  .  --user --upgrade\n```\n\nUsage\n-----\n\nSpatialPy provides simple object-oriented abstractions for defining a model of a biochemical system and simulating that model using efficient stochastic simulation algorithms.  The basic steps to use SpatialPy are:\n\n1. Create a `SpatialPy.Model` containing molecular species, parameters, and reactions.\n2. Invoke the model's `.run()` method.\n\nThe `run()` method can be customized using keyword arguments to select different solvers, random seed, data return type and more.  For more detailed examples on how to use SpatialPy, please see the Jupyter notebooks contained in the [examples](https://github.com/StochSS/SpatialPy/tree/main/examples) subdirectory.\n\n### _Simple example to illustrate the use of SpatialPy_\n\nIn SpatialPy, a model is expressed as an object. Components, such as the domains, reactions, biochemical species, and characteristics such as the time span for simulation, are all defined within the model. The following Python code represents our spatial birth death model using SpatialPy's facility:\n\n```python\ndef create_birth_death(parameter_values=None):\n    # First call the gillespy2.Model initializer.\n    model = spatialpy.Model(name='Spatial Birth-Death')\n    \n    # Define Domain Type IDs as constants of the Model\n    model.HABITAT = \"Habitat\"\n\n    # Define domain points and attributes of a regional space for simulation.\n    domain = spatialpy.Domain.create_2D_domain(\n        xlim=(0, 1), ylim=(0, 1), numx=10, numy=10, type_id=model.HABITAT, fixed=True\n    )\n    model.add_domain(domain)\n\n    # Define variables for the biochemical species representing Rabbits.\n    Rabbits = spatialpy.Species(name='Rabbits', diffusion_coefficient=0.1)\n    model.add_species(Rabbits)\n\n    # Scatter the initial condition for Rabbits randomly over all types.\n    init_rabbit_pop = spatialpy.ScatterInitialCondition(species='Rabbits', count=100)\n    model.add_initial_condition(init_rabbit_pop)\n\n    # Define parameters for the rates of creation and destruction.\n    kb = spatialpy.Parameter(name='k_birth', expression=10)\n    kd = spatialpy.Parameter(name='k_death', expression=0.1)\n    model.add_parameter([kb, kd])\n\n    # Define reactions channels which cause the system to change over time.\n    # The list of reactants and products for a Reaction object are each a\n    # Python dictionary in which the dictionary keys are Species objects\n    # and the values are stoichiometries of the species in the reaction.\n    birth = spatialpy.Reaction(name='birth', reactants={}, products={\"Rabbits\":1}, rate=\"k_birth\")\n    death = spatialpy.Reaction(name='death', reactants={\"Rabbits\":1}, products={}, rate=\"k_death\")\n    model.add_reaction([birth, death])\n\n    # Set the timespan of the simulation.\n    tspan = spatialpy.TimeSpan.linspace(t=10, num_points=11, timestep_size=1)\n    model.timespan(tspan)\n    return model\n```\n\nGiven the model creation function above, the model can be simulated by first instantiating the model object, and then invoking the run() method on the object. The following code will run the model once to produce a sample trajectory:\n\n```python\nmodel = create_birth_death()\nresults = model.run()\n```\n\nThe results are then stored in a class `Results` object for single trajectory or for multiple trajectories.  Results can be plotted with plotly (offline) using `plot_species()` or in matplotlib using `plot_species(use_matplotlib=True)`.  For additional plotting options such as plotting from a selection of species, or statistical plotting, please see the documentation.:\n\n```python\nresults.plot_species(species='Rabbits', t_val=10, use_matplotlib=True)\n```\n\n<p align=\"center\">\n<img width=\"500px\" src=\"https://raw.githubusercontent.com/StochSS/SpatialPy/main/.graphics/birth-death-example-plot.png\">\n</p>\n\n<!-- \n### Docker environment (DOES NOT WORK)\n\nYou can use Docker to create a repeatable environment for developing and debugging SpatialPy. The supplied Dockerfile starts a jupyter server with SpatialPy dependencies installed.\n\nIf you have Docker Compose: `docker-compose build && docker-compose up`\n\nOtherwise:\n\n```bash\ndocker build -t spatialpy:latest .\ndocker run -v ./:/home/jovyan/spatialpy -v ./tmp:/tmp -p 8888:8888 -p 5000:5000\n```\n\nThe SpatialPy repo is mounted into /home/jovyan so you can import it in the usual way for development (see examples).\n\nAny changes you make to your local codebase are reflected in the docker container. Note that you DO NOT need to restart the docker container or even re-import spatialpy to see source changes take effect in jupyter notebooks.\n\nThe `/tmp` directory is also mounted for easy access to build and result directories.\n\n### Debugging\n\nIn order to compile the solver binary for use by the debugger, run `solver.compile()` with `debug=True`. This will inject the `-g` flag into the `gcc` command that compiles the solver, enabling gdb debug information.\n\nYou can invoke `solver.run_debugger()` anytime after you instantiate a solver in Python to start up a new session of gdbgui. The debugger will be available at http://127.0.0.1:5000.\n\n\n### Profiling\n\nTo enable profiling, both `solver.compile()` and `solver.run()` need to be invoked with `profile=True`. If you don't run `solver.compile()` explicitly, invoking `solver.run()` with `profile=True` will run `compile()` correctly for you.\n-->\n\nGetting help\n------------\n\nSpatialPy's [online documentation](https://stochss.github.io/SpatialPy) provides more details about using the software.  If you find any problem with SpatialPy or the documentation, please report it using the [GitHub issue tracker](https://github.com/StochSS/SpatialPy/issues) for this repository.  You can also contact Dr. [Brian Drawert](http://www.cs.unca.edu/~drawert) directly with questions and suggestions.\n\nContributing\n------------\n\nWe would be happy to receive your help and participation with enhancing SpatialPy! Please follow the guidelines described in [CONTRIBUTING.md](https://github.com/StochSS/SpatialPy/tree/main/CONTRIBUTING.md).\n\nNew developments happen primarily in the [`develop`](https://github.com/StochSS/SpatialPy/commits/develop) branch.  New releases are put in the `main` branch.\n\n<p align=\"center\">\n\n| Main Branch   | Develop Branch |\n|:---------------:|:--------------:|\n| [![Build Status](https://github.com/StochSS/SpatialPy/actions/workflows/run-tests.yml/badge.svg)](https://github.com/StochSS/SpatialPy/actions/workflows/run-tests.yml) | [![Build Status](https://github.com/StochSS/SpatialPy/actions/workflows/run-tests.yml/badge.svg?branch=develop)](https://github.com/StochSS/SpatialPy/actions/workflows/run-tests.yml)\n\nLicense\n-------\n\nSpatialPy is licensed under the GNU General Public License version 3.  Please see the file [LICENSE](https://github.com/StochSS/SpatialPy/blob/main/LICENSE) for more information.\n\nAuthors and history\n---------------------------\n\n* [**Dr. Brian Drawert** ](https://github.com/briandrawert)\n* [**Dr. Kevin Sanft**](https://github.com/kevinsanft)\n* [**Sean Matthew**](https://github.com/seanebum)\n* [**Evie Hilton**](https://github.com/eviehilton)\n* [**Bryan Rumsey**](https://github.com/BryanRumsey)\n* [**Bruno Jacob**](https://github.com/brunopjacob)\n* [**Mason Kidwell**](https://github.com/makdl)\n* [**Matthew Geiger**](https://github.com/popensesame)\n\nAcknowledgments\n---------------\n\nThis work has been funded by National Institutes of Health (NIH) NIBIB Award No. 2R01EB014877-04A1.\n\nSpatialPy uses numerous open-source packages, without which it would have been effectively impossible to develop this software with the resources we had.  We want to acknowledge this debt.  In alphabetical order, the packages are:\n\n* [Jupyter](https://jupyter.org) &ndash; web application for creating documents containing code, visualizations and narrative text\n* [MatplotLib](https://matplotlib.org/index.html) &ndash; Python plotting library\n* [Plotly](https://plot.ly/) &ndash; Graphing library for making interactive, publication-quality graphs\n* [Numpy](https://www.numpy.org/) &ndash; the fundamental package for scientific computing with Python\n* [Scipy](https://www.scipy.org/) &ndash; Python-based ecosystem of open-source software for mathematics, science, and engineering\n\nFinally, we are grateful for institutional resources made available by the [University of North Carolina at Asheville](https://www.unca.edu), the [University of California at Santa Barbara](https://ucsb.edu), [Uppsala University](https://www.it.uu.se), and the [California Institute of Technology](https://www.caltech.edu).\n\n<div align=\"center\">\n  <a href=\"https://www.nigms.nih.gov\">\n    <img width=\"100\" height=\"100\" src=\"https://raw.githubusercontent.com/StochSS/SpatialPy/develop/.graphics/US-NIH-NIGMS-Logo.png\">\n  </a>\n  &nbsp;&nbsp;\n  <a href=\"https://www.unca.edu\">\n    <img height=\"102\" src=\"https://raw.githubusercontent.com/StochSS/SpatialPy/develop/.graphics/UNCASEAL_blue.png\">\n  </a>\n  &nbsp;&nbsp;\n  <a href=\"https://www.ucsb.edu\">\n    <img height=\"108\" src=\"https://raw.githubusercontent.com/StochSS/SpatialPy/develop/.graphics/ucsb-seal-navy.jpg\">\n  </a>\n  &nbsp;&nbsp;\n  <a href=\"https://www.it.uu.se\">\n    <img height=\"115\" src=\"https://raw.githubusercontent.com/StochSS/SpatialPy/develop/.graphics/uppsala-universitet-logo-svg-vector.png\">\n  </a>\n  &nbsp;&nbsp;\n  <a href=\"https://www.caltech.edu\">\n    <img width=\"115\" src=\"https://raw.githubusercontent.com/StochSS/SpatialPy/develop/.graphics/caltech-round.png\">\n  </a>\n</div>\n",
    "bugtrack_url": null,
    "license": "GPL-3.0-only",
    "summary": "Python Interface for Spatial Stochastic Biochemical Simulations",
    "version": "1.2.2",
    "split_keywords": [
        "biochemical simulation",
        "gillespie algorithm",
        "stochastic simulation",
        "biology",
        "spatial simulation",
        "rdme"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4e1312cf70b602dd261aba3c722709628fc113c0e3c91f9e97e6b54ce85aa64",
                "md5": "ed849d23e352ab4350319f99a74cf24c",
                "sha256": "89b448dd22ce4a877647023a96eb6cd8f9888fd2ae077d981d5da836cdbc9bdd"
            },
            "downloads": -1,
            "filename": "spatialpy-1.2.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ed849d23e352ab4350319f99a74cf24c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 808787,
            "upload_time": "2023-04-27T20:32:10",
            "upload_time_iso_8601": "2023-04-27T20:32:10.693470Z",
            "url": "https://files.pythonhosted.org/packages/a4/e1/312cf70b602dd261aba3c722709628fc113c0e3c91f9e97e6b54ce85aa64/spatialpy-1.2.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "791d5463561e01f2dc6532b8dcbdf5d86f2a7afaf94159dbe6e3f29afd32a051",
                "md5": "5586cfed7b7bdd61f9f2f13b7968dfa0",
                "sha256": "8efe1a5d8754b612b35467ccc88ab652a8c6df4306857d20e70d258307ec05ff"
            },
            "downloads": -1,
            "filename": "spatialpy-1.2.2.tar.gz",
            "has_sig": false,
            "md5_digest": "5586cfed7b7bdd61f9f2f13b7968dfa0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 718449,
            "upload_time": "2023-04-27T20:32:13",
            "upload_time_iso_8601": "2023-04-27T20:32:13.190291Z",
            "url": "https://files.pythonhosted.org/packages/79/1d/5463561e01f2dc6532b8dcbdf5d86f2a7afaf94159dbe6e3f29afd32a051/spatialpy-1.2.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-27 20:32:13",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "spatialpy"
}
        
Elapsed time: 0.06392s