Skip to main content

A generalized, model-agnostic framework for model calibration in PhysiCell.

Project description

PhysiCOOL: A generalized framework for model Calibration and Optimization Of modeLing projects

PyPI - Python Version GitHub Documentation Status Codecov Code style: black

Overview

Latest tested PhysiCell version: 1.10.4

PhysiCOOL is a Python library tailored to perform model calibration studies with PhysiCell. Using the PhysiCOOL package, PhysiCell projects can be converted into black-box models to evaluate how simulation outputs change in response to variations in input values. PhysiCOOL takes advantage of Python's popularity and simplicity to make PhysiCell studies more accessible and enables users to integrate Python-based calibration tools with their PhysiCell workflows.

Although PhysiCOOL was designed to create full model calibration workflows, its components can be used independently according to the users' needs. For instance,this novel package implements a file parser that enables users to read and write data to the PhysiCell XML configuration file using simple Python commands. Data validation is performed when new information is written to the files, assuring that the new values are consistent with PhysiCell's requirements and assumptions. Furthermore, PhysiCOOL also provides new functions to process and visualize simulation outputs which can be used for both parameter exploration and model calibration.

Installation

PhysiCOOL package is available through pip using the following command:

pip install physicool

Currently, Python versions >=3.8 are supported.

Documentation

Documentation available on readthedocs with more information on getting started with PhysiCOOL and running examples.

Usage

Writing data to the XML configuration file

The parameters used by PhysiCell in a new simulation are defined in a configuration file with an XML structure. While it is possible to use built-in Python functions to modify these scripts, it is required to know their structure and write new code to change different parameters. PhysiCOOL aims to simplify this process by letting users select the parameters to be changed based on PhysiCell's data structures with Python objects:

from physicool.config import ConfigFileParser
# Parse the data from the config file
xml_data = ConfigFileParser("config/PhysiCell_settings.xml")
# Read the cell parameters for the "default" cell definition
cell_data = xml_data.read_cell_data("default")
# Update and write the new parameters to the config file
cell_data.motility.bias = 0.5
xml_data.write_cell_params(cell_data=cell_data)

Another important PhysiCOOL component is data validation, which is not available through standard XML libraries. For instance, in this code snippet, PhysiCOOL automatically checks if the new migration bias value is between 0 and 1, as it is defined by PhysiCell that this parameter should be inside this range.

PhysiCell as a black-box model

Parameter estimation and model calibration can be achieved by assuming that a model behaves as a black-box. In other words, the information about the model itself can be disregarded and only the inputs and outputs are considered during calibration. PhysiCOOL allows users to connect their PhysiCell compiled scripts to Python-based functions in order to create a black-box model with three main components:

  • A function that updates the PhysiCell configuration file with new input parameters values;
  • The PhysiCell model;
  • A function that reads the model outputs and computes the desired output metric.

These black-box models are modular in the sense that the users can select what functions to use to update the configuration file and to process the results. For instance, users can decide to change the cells' motility parameters and evaluate the effect on the distance traveled by cells over time. Alternatively, the cell cycling rates could be varied to analyze the evolution of the number of cells.

black_box

Multilevel parameter sweep

The MultiSweep class exemplifies how PhysiCOOL can be used to calibrate models using some target data. It enables users to run a multilevel sweep using black-box models to find the parameter values that fit the target data by iteratively adapting and fitting the parameter space. To do so, at each level, the parameter space is sampled and value combinations are chosen. Simulations are run for all possible iterations and the results are processed to find the similarity between the models outputs and the target data. Subsequently, the values that produced the best set of results are chosen and the parameter bounds are adapted to converge to the local solution, as shown in the animation below.

Users can choose which parameters to vary and their initial values, as well as the number of levels and the number of points and ranges to explore at each level.

Examples

Examples can be run on Gitpod with a pre-defined environment that includes all the libraries and system requirements to run the examples available as Jupyter Notebooks.

Open in Gitpod

  • Interactive parameter estimation example: A simple example of logistic growth to showcase the multilevel sweep feature.

  • Data analysis and visualization: Examples of data visualization scripts, including interactive examples with Jupyter Widgets.

  • Single-cell motility: Finding the best parameter values for migration bias and migration speed to model motility in the presence of a chemotactic gradient.

  • Third-party libraries: Using a third-party library (psweep) to run parameter studies. Serves as an example of how PhysiCOOL can be integrated into a Python-based workflow to connect PhysiCell and other optimization libraries.

  • 🏗️ Cell growth (under development): Finding the best parameter values for cell cycling rates to model population growth. It also introduces gradient-based approaches. Code is available but this example has not been tested and depends on an older version of PhysiCOOL.

Getting help

For usage questions, bug reports and suggested improvements, please open a new issue through the GitHub "Issues" tab.

Citing PhysiCOOL

Preprint available on bioRxiv.

DOI:10.1101/2021.01.08.425840

Software available on Zenodo.

DOI

Team

Tool developed by Inês Gonçalves, David Hormuth, Sandhya Prabhakaran and Caleb Phillips.

Runner-up team of the "Best Tool" prize @ PhysiCell 2021 Workshop & Hackaton.

Credits

PhysiCOOL was created with cookiecutter and the py-pkgs-cookiecutter template.

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

physicool-0.2.4.tar.gz (25.0 kB view hashes)

Uploaded Source

Built Distribution

physicool-0.2.4-py3-none-any.whl (23.7 kB 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