Jump to content

PottersWheel

From Wikipedia, the free encyclopedia
PottersWheel
Developer(s)TIKANIS GmbH, Freiburg, Germany
Initial releaseOctober 6, 2006(2006-10-06)
Stable release
4.1.1 / May 20, 2017;7 years ago(2017-05-20)
Written inMATLAB,C
Operating systemMicrosoft Windows,Mac OS X,Linux
Size9MB(250.000 lines)
TypeMathematical modeling
LicenseFree trial license
Websitepotterswheel.de

PottersWheelis aMATLABtoolbox for mathematical modeling of time-dependentdynamical systemsthat can be expressed aschemical reaction networksorordinary differential equations(ODEs).[1]It allows the automatic calibration of model parameters by fitting the model to experimental measurements. CPU-intensive functions are written or – in case of model dependent functions – dynamically generated in C. Modeling can be done interactively using graphical user interfaces or based on MATLAB scripts using the PottersWheel function library. The software is intended to support the work of a mathematical modeler as a realpotter's wheeleases the modeling of pottery.

Seven modeling phases

[edit]

The basic use of PottersWheel covers seven phases from model creation to the prediction of new experiments.

Model creation

[edit]

The dynamical system is formalized into a set of reactions or differential equations using a visual model designer or a text editor. The model is stored as a MATLAB *.m ASCII file. Modifications can therefore be tracked using a version control system likesubversionorgit.Model import and export is supported forSBML.Custom import-templates may be used to import custom model structures.Rule-based modelingis also supported, where a pattern represents a set of automatically generated reactions.

Example for a simple model definition file for a reaction network A → B → C → A with observed species A and C:

functionm=getModel()

% Starting with an empty model
m=pwGetEmtptyModel();

% Adding reactions
m=pwAddR(m,'A','B');
m=pwAddR(m,'B','C');
m=pwAddR(m,'C','A');

% Adding observables
m=pwAddY(m,'A');
m=pwAddY(m,'C');
end

Data import

[edit]

External data saved in *.xls or *.txt files can be added to a model creating amodel-data-couple.A mapping dialog allows to connect data column names to observed species names. Meta information in the data files comprise information about the experimental setting. Measurement errors are either stored in the data files, will be calculated using an error model, or are estimated automatically.

Parameter calibration

[edit]

To fit a model to one or more data sets, the corresponding model-data-couples are combined into afitting-assembly.Parameters like initial values, rate constants, and scaling factors can be fitted in an experiment-wise or global fashion. The user may select from several numerical integrators, optimization algorithms, and calibration strategies like fitting in normal or logarithmic parameter space.

Interpretation of the goodness-of-fit

[edit]

The quality of a fit is characterized by itschi-squaredvalue. As a rule of thumb, for Nfitted data points andpcalibrated parameters, the chi-squared value should have a similar value asNpor at leastN.Statistically, this is expressed using achi-squared testresulting in ap-valueabove a significance threshold of e.g. 0.05. For lower p-values, the model is

  • either not able to explain the data and has to be refined,
  • the standard deviation of the data points is actually larger than specified,
  • or the used fitting strategy was not successful and the fit was trapped in a local minimum.

Apart from further chi-squared based characteristics likeAICandBIC,data-model-residual analyses exist, e.g. to investigate whether theresidualsfollow aGaussian distribution.Finally, parameterconfidence intervalsmay be estimated using either theFisher information matrixapproximation or based on theprofile-likelihood function,if parameters are not unambiguously identifiable.

If the fit is not acceptable, the model has to be refined and the procedure continues with step 2. Else, the dynamic model properties can be examined and predictions calculated.

Model refinement

[edit]

If the model structure is not able to explain the experimental measurements, a set of physiologically reasonable alternative models should be created. In order to avoid redundant model paragraphs and copy-and-paste errors, this can be done using a common core-model which is the same for all variants. Then,daughter-models are created and fitted to the data, preferably using batch processing strategies based on MATLAB scripts. As a starting point to envision suitable model variants, the PottersWheelequalizermay be used to understand the dynamic behavior of the original system.

Model analysis and prediction

[edit]

A mathematical model may serve to display the concentration time-profile of unobserved species, to determine sensitive parameters representing potential targets within a clinical setting, or to calculate model characteristics like the half-life of a species.

Each analysis step may be stored into a modeling report, which may be exported as a Latex-based PDF.

Experimental design

[edit]

An experimental setting corresponds to specific characteristics ofdriving input functionsand initial concentrations. In a signal transduction pathway model the concentration of a ligand like EGF may be controlled experimentally. The driving input designer allows investigating the effect of a continuous, ramp, or pulse stimulation in combination with varying initial concentrations using the equalizer. In order to discriminate competing model hypotheses, the designed experiment should have as different observable time-profiles as possible.

Parameter identifiability

[edit]

Many dynamical systems can only be observed partially, i.e. not all system species are accessible experimentally. For biological applications the amount and quality of experimental data is often limited. In this setting parameters can be structurally or practically non-identifiable. Then, parameters may compensate each other and fitted parameter values strongly depend on initial guesses. In PottersWheel non-identifiability can be detected using theProfile Likelihood Approach.[2]For characterizing functional relationships between the non-identifiable parameters PottersWheel applies random and systematic fit sequences.[3]

References

[edit]
  1. ^T. Maiwald and J. Timmer (2008) "Dynamical Modeling and Multi-Experiment Fitting with PottersWheel",Bioinformatics24(18):2037–2043
  2. ^Structural and practical identifiability analysis of partially observed dynamical models by exploiting the profile likelihood,A. Raue, C. Kreutz, T. Maiwald, J. Bachmann, M. Schilling, U. Klingmüller and J. Timmer, Bioinformatics 2009
  3. ^Data-based identifiability analysis of non-linear dynamical models,S. Hengl, C. Kreutz, J. Timmer and T. Maiwald, Bioinformatics 2007 23(19):2612–2618
[edit]