Skip to main content

BETSE, the BioElectric Tissue Simulation Engine.

Project description

BETSE

BETSE (BioElectric Tissue Simulation Engine) is an open-source cross-platform discrete exterior calculus simulator for 2D computational multiphysics problems in the life sciences – including electrodiffusion, electro-osmosis, galvanotaxis, voltage-gated ion channels, gene regulatory networks, and biochemical reaction networks (e.g., metabolism). BETSE is associated with the Paul Allen Discovery Center at Tufts University and supported by a Paul Allen Discovery Center award from the Paul G. Allen Frontiers Group.

BETSE is portably implemented in pure Python 3, continuously stress-tested with GitLab-CI × Appveyor + py.test, and permissively distributed under the BSD 2-clause license.

BETSEE

BETSEE (BETSE Environment) is the official open-source cross-platform graphical user interface (GUI) for BETSE. BETSEE wraps the low-level command-line interface (CLI) bundled with BETSE in a high-level interactive modelling environment optimized for both new and advanced users alike.

Like BETSE, BETSEE is portably implemented in Python 3 and permissively distributed under the BSD 2-clause license. Unlike BETSE, BETSEE leverages the industry-standard PySide2-based Qt 5 application framework to deliver a modern scientific workflow.


Installation

BETSE currently supports Linux, macOS, and Windows out-of-the-box.

Simple

For new users, BETSE is portably installable as follows:

Advanced

For developers and advanced users, any version of BETSE – including the live repository and prior stable releases – is manually installable as follows:

  1. Install Python 3.x and all dependencies required by BETSE. Under:

    • Linux, install these dependencies via your distribution-specific package manager (e.g., APT under Debian-based distributions). Do not use pip.[7]

    • macOS, either:

      • (Recommended) Install the Python 3.x variant of Anaconda.

      • Or both:

        1. Install a third-party package manager (e.g., Homebrew, MacPorts). Apple does not provide a package manager out-of-the-box.

        2. Install these dependencies via that package manager. Do not use pip.[7]

    • Windows, install the Python 3.x variant of Anaconda.[8]

  2. Open a terminal.

  3. Download either:

    • The unstable BETSE repository as follows:

      1. Install Git.

      2. Clone the master branch of this repository.

        git clone https://gitlab.com/betse/betse.git
      3. Prepare for installation.

        cd betse
    • Any stable BETSE release, including the most recent, as follows:

      1. Visit our source tarball archive.

      2. Click the download icon to the right of the desired release and select Download tar.gz.

      3. Extract the downloaded tarball into the current directory.

        tar -xvzf betse-*.tar.gz
      4. (Optional) Remove this tarball.

        rm betse-*.tar.gz
      5. Prepare for installation.

        cd betse-*
  4. Install BETSE either:

    • (Recommended) Editably, installing a cross-platform symbolic link to the current BETSE codebase. Modifications to this code are applied immediately without requiring reinstallation.

      sudo python3 setup.py develop
    • Non-editably, installing a physical copy of the current BETSE codebase. Modifications to this code are ignored and thus require reinstallation.

      sudo python3 setup.py install
  5. (Optional) Test BETSE, running all modelling phases of a sample simulation from a new directory.

    cd /tmp && betse try

Usage

Basic

BETSE installs the betse command, a low-level command line interface (CLI) designed for experienced users. The typical CLI-based workflow resembles:

  1. Create a default simulation configuration in a new my_sim/ subdirectory of the current directory.

    betse config my_sim/sim_config.yml
  2. [Optional] Edit the new my_sim/sim_config.yml file with your favourite text editor.

  3. Create a pseudo-random cell cluster from this simulation configuration.

    betse seed my_sim/sim_config.yml
  4. [Optional] Export all enabled plots, animations, and comma-separated value (CSV) files from this cell cluster.

    betse plot seed my_sim/sim_config.yml
  5. Initialize (i.e., calculate steady-state concentrations for) this cell cluster.

    betse init my_sim/sim_config.yml
  6. [Optional] Export all enabled plots, animations, and comma-separated value (CSV) files from this initialization.

    betse plot init my_sim/sim_config.yml
  7. Simulate this initialized cell cluster.

    betse sim my_sim/sim_config.yml
  8. [Optional] Export all enabled plots, animations, and comma-separated value (CSV) files from this simulation.

    betse plot sim my_sim/sim_config.yml

Also note that our sister project BETSEE installs the betsee command, a high-level graphical user interface (GUI) designed for all users – regardless of prior experience or familiarity with the command line.

Expert

BETSE provides a variety of command-line options and subcommands in addition to those synopsized above. The standalone betse and betse --help commands describe these options and subcommands as follows:

usage: betse [-h] [-v] [-V] [--log-file LOG_FILENAME]
             [--log-level {all,debug,info,warning,error,critical,none}]
             [--profile-type {none,call,size}]
             [--profile-file PROFILE_FILENAME]
             [--matplotlib-backend MATPLOTLIB_BACKEND_NAME]
             {config,seed,init,sim,sim-grn,plot,info,try} ...

The BioElectric Tissue Simulation Engine (BETSE) is a discrete exterior
calculus simulator for 2D computational multiphysics problems in the life
sciences -- including electrodiffusion, electro-osmosis, galvanotaxis,
voltage-gated ion channels, gene regulatory networks, and biochemical
reaction networks.

optional arguments:
  -h, --help            show this help message and exit
  -v, --verbose         print and log all messages verbosely
  -V, --version         print program version and exit
  --log-file LOG_FILENAME
                        file to log to (defaults to
                        "/home/leycec/.betse/betse.log")
  --log-level {all,debug,info,warning,error,critical,none}
                        minimum level of messages to log to "--log-file"
                        (defaults to "info") [overridden by "--verbose"]
  --profile-type {none,call,size}
                        type of profiling to perform (defaults to "none"):
                        * "none", disabling profiling
                        * "call", profiling callables (functions, methods)
                        * "size", profiling object sizes (requires "pympler")
  --profile-file PROFILE_FILENAME
                        file to profile to unless "--profile-type=none"
                        (defaults to "/home/leycec/.betse/betse.prof")
  --matplotlib-backend MATPLOTLIB_BACKEND_NAME
                        name of matplotlib backend to use (see: "betse info")

subcommands:
Exactly one of the following subcommands must be passed:

  {config,seed,init,sim,sim-grn,plot,info,try}
    config              create a default config file for BETSE simulations
    seed                seed a new cell cluster for a config file
    init                initialize a seeded cell cluster for a config file
    sim                 simulate an initialized cell cluster for a config file
    sim-grn             simulate a gene regulatory network for a config file
    plot                plot an initialized or simulated simulation
    info                print metadata synopsizing BETSE and current system
    try                 create, init, simulate, and plot a sample simulation

subcommand help:

For help with a specific subcommand, pass the "-h" or "--help" option to that
subcommand. For example, for help with the "config" subcommand, run:

    betse config --help

Documentation

BETSE also provides external documentation optimized for offline reading – complete with explanatory examples, sample plots, and ample screenshots:

Tutorials

BETSE provides a range of hands-on tutorial materials, including simulation files to run key published simulations, as well as a Developer’s Tutorial demonstrating how to load and work with BETSE modules, methods, and simulations in external code projects:

Introduction

BETSE simulates biorealistic electrochemical phenomena in gap junction-networked 2D cellular collectives. To predict bioelectric patterns and their spatio-temporal dynamics, BETSE:

  • Models ion channel and gap junction activity.

  • Tracks changes in ion concentration and net ionic charge.

  • Calculates endogenous voltages and currents.

  • Accepts simulation parameters, variables, and options as human-readable, well-commented configuration files in YAML format.

  • Exports simulation results to a variety of output formats, including:

    • Publication-quality:

      • Plots, charts, and animations driven by Matplotlib, the industry standard for open-source plot visualization.

      • Directed graphs (i.e., networks) driven by Graphviz, the industry standard for open-source graph visualization.

    • Internet-friendly compressed video driven by any of various popular open-source video encoders, including FFmpeg, Libav, and MEncoder.

    • Post-processable tabular data (e.g., comma-separated values (CSV)).

  • Imports bitmask images defining the shapes of:

    • Cell clusters.

    • Cell cluster regions localizing ion channel activity, typically signifying disparate types of adjacent tissue.

To assemble simple concepts into complex simulations, BETSE supplies a richly configurable, highly scalable biological toolset consisting of:

Ions

Simulations may enable arbitrary combinations of the principal ions implicated in bioelectrical signaling – including:

Ion Channels

Individual cells in simulations may enable arbitrary combinations of voltage-gated ion channels, each implementing the Hodgkin-Huxley (HH) formalism with experimentally-derived parameters sourced from reputable knowledge-based systems (e.g., Channelpedia). Explicitly supported channel types include:

Custom ion channels parametrized by user-selected constants may be trivially defined in the same manner (e.g., via a YAML-formatted configuration file).

Ion Pumps and Exchangers

For fine-grained control over cell dynamics, notable ion pumps and exchangers may also be selectively enabled – including:

Custom ion pumps and exchangers parametrized by user-selected constants may be trivially defined in the same manner (e.g., via a YAML-formatted configuration file).

Extracellular Space

Cells form interconnected intracellular networks via voltage-sensitive gap junction connections embedded within an extracellular environment, maintained by tight junctions at the cell cluster periphery. Simulation of this environment enables exploration of local field potentials, transepithelial potential, and ephaptic coupling between cells.

Biological Networks

Simulation of gene regulatory and biochemical reaction networks at both the cellular and mitochondrial level supports deep spatial analysis of otherwise intractable biological processes. Metabolism, disease, aging, and other genetic and epigenetic phenomena commonly associated with quasi-Big Data are all valid targets for exhaustive study with BETSE.

To integrate these potent control systems with bioelectrical signaling, the activity-modulated interaction between gene products and similar biochemicals is fully integrated with ion channels, ion pumps, and gap junctions.

Validation

BETSE is peer-reviewed software receiving continual evidence-based scrutiny. Simulation output is reproducibly synchronized with experimental observations on membrane permeability, resting potential, ion concentration, and similar real-world biophysical quantities. Predictable outcomes have been demonstrated for such well-known cases as:

Citation

BETSE is formally described in our introductory paper. Third-party papers, theses, and other texts leveraging BETSE should ideally cite the following:

Alexis Pietak and Michael Levin, 2016. Exploring instructive physiological signaling with the bioelectric tissue simulation engine (BETSE). (Supplement). [9] Frontiers in Bioengineering and Biotechnology, 4(55). https://doi.org/10.3389/fbioe.2016.00055

Subsequent papers expanding the BETSE architecture with additional theory, experimental results, and comparative metrics include:

Contact

To contact Dr. Pietak, the principal developer of the BETSE codebase and first or second author of all above papers, cordially direct correspondence to either:

To report a software issue (e.g., bug, crash, or other unexpected behaviour) or request a new feature in BETSE, consider submitting a new issue to our issue tracker. Thanks in advance; it’s only through generous user contributions that your user experience can continue to improve.

Authors

BETSE comes courtesy a dedicated community of authors and contributors – without whom this project would be computationally impoverished, biologically misaligned, and simply unusable.

Thanks, all.

See Also

For prospective users:

  • Installation, detailing BETSE’s installation with exhaustive platform-specific instructions.

For prospective contributors:

  • Development, detailing development of the BETSE codebase – philosophy, workflow, and otherwise.

  • Testing, detailing testing of the BETSE codebase – continuous integration, manual testing, and otherwise.

  • Freezing, detailing conversion of the BETSE codebase into redistributable platform-specific executable binaries.

License

BETSE is open-source software released under the permissive BSD 2-clause license.

The logo prominently displayed on this project page is a flat Noun Project icon entitled “Cow,” kindly released under the permissive BSD-compatible CC BY 3.0 license by Maxim Kulikov.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

betse-1.0.0.tar.gz (2.8 MB view hashes)

Uploaded Source

Built Distribution

betse-1.0.0-py3-none-any.whl (1.9 MB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page