Using CellML electrophysiology models in Cardiac Chaste
Note
This is the guide for chaste_codegen, the Python 3 code generator used in Chaste 2021.1 onwards. For the Python 2 code generator (PyCml) used up to release 2019.1, see the release 2019.1 version of this guide.
Please note: experienced Chaste users may want to skip to the Summary of changes compared to PyCml
This page contains some notes on generating Chaste code for cardiac cell models from CellML files, using chaste_codegen, the Python 3 Chaste CellML toolkit. chaste_codegen is developed in Python 3 and distributed via the Python Package Index (PyPI). The Chaste build process automatically creates a Python 3 virtual environment and installs chaste_codegen in this for generating code from CellML files.
The process is mostly automatic, although some of the options require some human
intervention, and the CellML file itself may need to be
annotated in order to allow successful conversion
(for example, to indicate which variables represent the transmembrane potential
and stimulus current). Many annotated CellML files may be found in the Chaste
repository, either in the
heart/src/odes/cellml
folder, or the cellml project.
There are two main ways of using CellML within Chaste. If you are a cardiac executable user, then providing you compiled the executable from source yourself, CellML files may be loaded on the fly, as described below. If however you are using the source release of Chaste directly, the sections on using dynamically loaded CellML models and using CellML files as sources in Chaste will be relevant.
Using CellML files as sources directly in Chaste
The Chaste build system uses chaste_codegen to generate source code from CellML
files ‘on the fly’. CellML files located within the src
or test
folders will
generate code that can be used like normal C++ classes. It can be very helpful
to have access to a range of models, by using the
Chaste cellml project. This project contains
many of the common models, pre-annotated with metadata for automatic conversion,
and tagging of many of the common parameters you may wish to vary/investigate.
See the README
at the previous link for instructions on including this
project within your own project.
Note
Unlike its predecessor, chaste_codegen calculates its own
analytic jacobians (using SymPy in the background) and no longer needs users to manually run the proprietary Maple software to generate .out
files.
Project-specific conversion options
You can also provide project-wide arguments for conversion of any CellML files within that project. For example, to generate cell models that use modifiers for metadata-annotated variables, add the following line to your project’s CMakeLists.txt:
Model-specific conversion options
Note
Unlike its predecessor, chaste_codegen does not make use of config files, instead chaste_codegen uses command line arguments. In order to specify conversion options which are different from the default or project-specific options, please make use of dynamic loading (see using dynamically loaded CellML models).
Dynamic loading
If the CellML file is placed within a dynamic
folder (e.g.
heart/dynamic
), it will be compiled to a shared library
suitable for loading dynamically at runtime by compiled tests/executables. In this case, only a single
output variant (.hpp & .cpp pair) can be generated, so by default normal cells
will be generated (see command line arguments). If
other types are required, edit CODEGEN_EXTRA_ARGS
(see
project-specific conversion options).
See the CellML files in heart/src/odes/cellml
for examples.
Using dynamically loaded CellML models in Chaste tests or projects
Your own code built on Chaste may also use dynamically compiled and loaded
CellML models. There is now a helper class CellMLLoader
for this. An example
is given below:
The cellml project contains many annotated CellML files which you may use in this fashion.
Model annotation with RDF
CellML files may include metadata through the use of RDF, the Resource Description Framework (see the CellML metadata specification for more information). The chaste_codegen generator makes use of several different annotations when generating C++ source code for Chaste.
Some annotations are required to enable successful code generation. In particular, chaste_codegen needs to know which variables represent voltage, the transmembrane potential and stimulus current, in order to link the models into the mono/bi-domain equations. (If the model does not have a stimulus current because it represents a self-excitatory cell, it should be annotated to indicate this.) Unlike its predecessor, chaste_codegen does not try to guess based on names in the model so name annotations must be used. You may also need to annotate the membrane capacitance if its value is required for automatic units conversions (if the model uses amps as the dimensions of transmembrane currents).
All metadata annotations must occur within an
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
element.
Such an element may occur within any CellML element, so you may place
annotations next to the variable being annotated, or in a single rdf:RDF
element at the top level of the model, as you prefer. Variables to be annotated
must have a cmeta:id
attribute, which is used to identify the variable in the
annotation.
Each annotation takes the form of an rdf:Description
element:
where “cmeta_id
” is replaced by the value of the cmeta:id
attribute on the
variable being annotated.
The following annotations are understood by chaste_codegen. See the CellML files
in
heart/src/odes/cellml
for examples of their use.
Standardised names
This can be used to specify the ‘standard’ (to chaste_codegen) name of this
variable. Replace ‘standard-name
’ with the name in question.
The full list of allowed names can be found within the oxford-metadata.ttl
file in the
Web Lab Ontology source code.
To update the ‘official’ metadata list – Check with Gary first! – you need to
update the .ttl
file, and then run a build on a machine with a newish version of
python rdflib installed (to ensure that oxford-metadata.rdf
is also updated to
match), preferably using Python 3.
Updating the official metadata should only be done for metadata that is generally reusable.
Currently only a few of these names, shown below, have special meaning to the Chaste CellML translation process.
membrane_voltage
– the transmembrane potential. Please note: this is now required; chaste_codegen conversion will fail if it is not presentmembrane_capacitance
– this is useful if converting the model current units to those expected by Chaste; requires knowledge of the cell’s membrane capacitancecytosolic_calcium_concentration
– if this variable is present, the generated class will define theGetIntracellularCalciumConcentration
methodmembrane_stimulus_current
– specifies which variable represents the intracellular stimulus currentmembrane_stimulus_current_amplitude
,membrane_stimulus_current_duration
,membrane_stimulus_current_period
,membrane_stimulus_current_offset
– if the stimulus coded in the model is a regular square wave, the relevant parameters may be annotated to allow chaste_codegen to define theUseCellMLDefaultStimulus
method that uses aRegularStimulus
class. The presence ofmembrane_stimulus_current_offset
is optional.
Note
- All non-state-variables, annotated in this way, are accessible as
parameters or
derived quantities, as appropriate. This will thus make
them accessible via the
GetAnyVariable
andOutputVariables
functionality. This includes state variables annotated with new tags that otherwise do not have a meaning in the ontology. - The code generation process expects annotation to be unique (only 1 variable annotated with any given metadata tag)
- Only tag source variables, instead of any dependant variables with not any dependant ‘in’ interface. Connection resolving may well remove other of the variable during processing.
Full example:
We also use these standardised names to interface between models and protocol definitions in the Functional Curation system.
chaste_codegen conversion specific parameters
In addition to the standardised names there are a number of conversion specific annotations that can be added to a CellML model, described below.
The namespace for this annotation is named
https://chaste.comlab.ox.ac.uk/cellml/ns/pycml#
for historical reasons to
ensure compatibility with CellML models marked up for chaste_codegen’s
predecessor.
Modifiable parameters
This specifies that the variable should become a named parameter within the C++
class, with name given by its cmeta:id
(unless it has a
standardised name, in which case that is used). The
variable can then be altered at run-time, via calls to the SetParameter
method. Such parameters can also be set via the ChasteParameters
XML file, as
described below, and selected for
output using the OutputVariables
functionality.
Full example:
Derived quantities
This specifies that the variable should become a derived quantity within the C++
class, with name given by its cmeta:id
(unless it has a
standardised name, in which case that is used). Derived
quantities may be computed using the ComputeDerivedQuantities
and
ComputeDerivedQuantitiesFromCurrentState
methods, and selected for output
using the OutputVariables
functionality. This is useful for quantities which
are not necessary for computing the time evolution of the model, but still of
interest.
Full example:
Variable range checking
Chaste has the ability to check at each time step that cell model variables have not gone out of an expected range.
This is especially useful for Hodgkin-Huxley style gating variables, or ion channel Markov state occupancies, which (being probabilities) must lie between 0 and 1; and also for concentrations which must be non-negative.
At code generation time, methods are added that will throw an error when running code built under CMAKE_BUILD_TYPE=Debug
(but not with Release
or other optimised build types) if variables go out of range, with a suitable tolerance if using CVODE.
Note
CellML files that are tagged with suitable standardised names will automatically generate checks when the Oxmeta ontology identifies those standardised names as gating variables/concentrations. So you no longer have to manually specify these checks - anything the ontology identifies as a gating variable or concentration will get the methods automatically.
In order to take advantage of this for variables that the ontology has not automatically identified as probabilities or concentrations, you must annotate your model to specify the expected range, using the pycml:range-low
and pycml:range-high
annotations, e.g.
The range specified is treated as a closed interval.
Full example:
Self-excitatory models
This stops chaste_codegen looking for a stimulus current in the model, so that
sino-atrial node models can be used in Chaste. In this case, you need to
annotate the model itself, i.e. the cmeta:id
used should be that on the
model
element. For example,
Named attributes
After release 2.1 Chaste has gained the ability to use real-valued named attributes associated with ODE classes. chaste_codegen can use this functionality to transfer named attributes from a CellML file into Chaste, so they are available for querying by other Chaste code. This will not typically be of use to executable users, but developers working with Chaste may find it useful. For example, such annotations could specify various “typical values” for the cell model, such as normal cycle length, or suggested forward Euler time step.
These are model annotations, i.e. the cmeta:id
used should be that on the
model
element. For example,
Combining annotations
It is possible to combine annotations. The example below shows a variable that is a cytosolic_calcium_concentration but is also marked as derived quantity:
chaste_codegen command line arguments
chaste_codegen can be supplied with command line arguments directly, to specify the desired conversion.
Note
Unlike its predecessor, chaste_codegen does not make use of config files.
activation
The chaste_codegen tool is developed in Python 3 and is best installed in a
Python 3 virtual environment. The Chaste build process automatically sets up
chaste_codegen in the build folder (in
<build_folder>/codegen_python3_venv
) but it can also be installed manually if
desired. See Install Codegen.
To use the commands below, you can first activate the environment as follows from your build folder:
(If you manually installed a virtual environment use its name instead of
codegen_python3_venv
, from the correct location).
Alternatively, you can prefix the chaste_codegen command with the full path to
the bin
folder in the virtual environment e.g.
without the need to activate the environment.
command line arguments
chaste_codegen -h
displays the help giving a full overview of what is available.
There are a number of different arguments: the cellml file, model types, Chaste options and generated code options. Below is a summery of some of the most common options.
The cellml file
chaste_codegen takes what the help calls a “positional argument”. This is the CellML file being converted e.g.
Other arguments (preceded by --
or -
) can be placed before or after the CellML
file in any order.
Model types
There are arguments that control what kind of model (CardiacCell) is being generated.
Generating a normal model, or standard AbstractCardiacCell subclass
This can be generated using the --normal
argument e.g.
This is the default if no transformation type is indicated an AbstractCardiacCell
will also be generated.
Generate CVODE cells, AbstractCvodeCell subclass.
CVODE cells can be generated using the --cvode
argument. chaste_codegen can
generate its own analytic jacobian. To include an analytics jacobian combine
--cvode
with --use-analytic-jacobian
(or -j
) e.g.
Generate CVODE cells with data clamp
A subclass AbstractCvodeCellWithDataClamp
allows the ‘data clamp’ proposed by
Dokos & Lovell (2004) to be
applied to any CellML model. This can be generated using the
--cvode-data-clamp
argument. If desired this can also be generated with an
analytic jacobian using the --use-analytic-jacobian
(or -j
) argument e.g.
This adds an additional current to the model, specified by:
Note
This current affects dV/dt
for single cell simulations only. It is not
reported by GetIIonic()
so it assumes I_data=0
in tissue simulations!
This can be used via the methods:
Generating Backward Euler cells, AbstractBackwardEulerCardiacCell subclass
This can be generated using the --backward-euler
argument e.g.
Generating Rush Larsen cells, AbstractRushLarsenCardiacCell subclass
This can be generated using the --rush-larsen
argument e.g.
Generating Generalized Rush Larsen cells, AbstractGeneralizedRushLarsenCardiacCell subclass
chaste_codegen can generate both a first-order generalisation as well as a
second order generalisation. The arguments that can be used for this are
--grl1
and --grl2
respectively so e.g.
or
Chaste options
--dynamically-loadable
(or-y
or--dll
), generate the code allowing it to be dynamically loaded. Please note: This method is mainly useful for the build system to generate code in thedynamic
folder or by the CellMLLoader
. It should not be used if generating code to include in the source of your project.--opt
generate an optimised version of the specified models with partial evaluation and lookup tables. Can be combined with any model type above.--use-modifiers
(or-m
) adds modifier functions for metadata-annotated variables (except time & stimulus). Only works with--normal
,--cvode
and--cvode-data-clamp
--lookup-table <metadata tag> min max step
indicates a lookup table different from the default. The argument must be followed by a metadata tag to identify the variable, a minimum and maximum value and a step. The argument can be repeated to specify lookup tables for multiple different variables. The default ismembrane_voltage -250.0001, 549.9999, 0.001
. Please note: Using this argument disables the default, so if a lookup table is required for a variable tagged asmembrane_voltage
it will need to be re-specified. Tags which are not present in the model are skipped.
Generated code options
These options do not affect what kind of cells get generated, but instead affect some general logistics. Unless otherwise specified these can be combined with other options. The arguments are:
-o OUTFILE
specifies the name of the generated code file. The outfile is expected to be header file (.hpp or .h), a code file (.cpp or .c) and the name given and its corresponding header/code file will be generated. Cannot be combined with--output-dir
.- This can also be used with a CellML file, which will result in a .cpp and
.hpp file with the name of the CellML file being generated. This is the
default behaviour if
-o
is not specified.
- This can also be used with a CellML file, which will result in a .cpp and
.hpp file with the name of the CellML file being generated. This is the
default behaviour if
--output-dir OUTPUT_DIR
specified an output folder for generated code. Cannot be combined with-o
.--show-outputs
instead of generating code this option shows what files would be generated (one per line) if the command was run without the option.-c CLS_NAME
explicitly sets the name of the generated class. If this option is not used, the class name is based on the name of the CellML file.--quiet
(or-q
) disables warning and informational messages.
Use of CellML in the cardiac executable
The cardiac executable has the ability to automatically load cell models encoded as CellML files at run-time. In order to take advantage of this, you need (at present) to have built the executable from source yourself, as it uses your Chaste source tree to convert the CellML file into runnable code.
To specify one of the models included within Chaste in the parameters file, you
now need to wrap it in a <Hardcoded>
element, e.g.
Specify a dynamically loaded model using the <Dynamic>
element instead, e.g.
The path may either point to a pre-compiled shared library (as in the example),
or a CellML file. If the latter, a shared library will be created in the same
folder as the CellML file, and loaded by the executable at run-time. See
heart/test/data/xml/ChasteParametersFullFormat.xml
for a full example parameters file.
Chaste allows modifying certain parameters of the models within user-defined regions of the tissue. This is incorporated within the cell heterogeneity support in the parameters file:
Parameters to be modified in this way must be annotated specially in the CellML
file – you cannot just modify any variable in the model. Each variable must have
a cmeta:id
specified (this gives the name used in the <SetParameter>
element) and
an RDF annotation added, e.g.
Such a block may be placed inside any CellML element, but placing it within or next to the annotated variable is recommended. See Model Annotation with RDF for more. The older scale factor support, which was hardcoded is no longer supported
Variable annotation as a parameter or derived quantity is also important to
support the OutputVariables
functionality in the executable. Any variable thus
annotated, or any state variable, may be specified to be included in the output
data along with V
and phi_e
.
Please note: As chaste_codegen does not use config files, options controlling the code generation process for the CellML file are as follows:
- Set Project-specific conversion options.
- Use chaste_codegen to manually create .cpp and .hpp files (see chaste_codegen command line arguments), include these in your project source and either directly include or point your parameters file at the shared library that results from its compilation.
- Use dynamic loading to convert the code and point the parameters file at the CellML file in the conversion folder, it will pick up the converted version.
- Use dynamic loading via code instead.
Summary of changes compared to PyCml
This section highlights the main difference between chaste_codegen and its predecessor PyCml. The two work in broadly similar ways, but there are some key differences.
- chaste_codegen generates its own analytic jacobians and the
--use-analytic-jacobian
(or-j
) argument is now used without specifying a.out
file. Where a two-step process was required it is no longer required. - chaste_codegen does not make use of config files.
- The only way to specify what kind of code to generate is now via the command line arguments.
- To generate different models from the default, use dynamic loading or set project-specific conversion options.
- Lookup table settings can also be specified via the command line – see Chaste options
- chaste_codegen is fully re-written for Python 3 and during the build process a virtual environment is set up with the required packages. See Install Codegen.