Comparing individual-based approaches to modelling the self-organization of multicellular tissues
On this page
- in the Chaste directory. Note that username for checking out the project code is ‘anonymous’. When prompted for a password then please give an email address.
- in the Chaste directory. Note that username for checking out the project code is ‘anonymous’. When prompted for a password then please give an email address.
Welcome to the Chaste wiki.
This section contains pages generated automatically from the source code accompanying the paper “Comparing individual-based approaches to modelling the self-organization of multicellular tissues”.
EmbedYoutube(4YZp_WmBZTI) EmbedYoutube(F04IlE2PyY0) EmbedYoutube(SX2GFOr0Dus) EmbedYoutube(Yl2GT2x2ohc)
Getting the code and installing dependencies
Before running these examples you will need to install Chaste’s dependencies. The easiest way to do this is using an Ubuntu machine (or an Ubuntu virtual machine) as discussed on InstallGuides/UbuntuPackage. Note that Chaste is only fully supported on Linux/Unix systems, so users of Windows or Mac OS X may need to follow the virtual machine route. For manual installation of each dependency, on any version of Linux, see DeveloperInstallGuide.
NB: the paper was developed to work with a specific tagged development version of Chaste. Presently it does not work with any of the previous release versions. However we will tie this code to the next release of Chaste.
Instructions for Ubuntu 16.04 or similar (Chaste version 3.x)
To checkout the source code for the specific code revision use the command
Alternatively, if you already have a clone of our Git repository then simply run the command
to move your source to the correct revision.
This project can be built with either of the two builders SCons or CMake. (Note that SCons will be deprecated in a later release of Chaste.) At this point you should configure Chaste with CMake or deprecated Scons.
You will also need the source for the CellBasedComparison2017 project. This can be done by checking out the version from the repository by using the command
in the Chaste directory. Note that username for checking out the project code is ‘anonymous’. When prompted for a password then please give an email address.
Instructions for Ubuntu 18.04 or similar (Chaste version 2017.x)
To checkout the source code for the specific code revision use the command
Alternatively, if you already have a clone of our Git repository then simply run the command
to move your source to the correct revision.
This project can be built with either of the two builders SCons or CMake. (Note that SCons will be deprecated in a later release of Chaste.) At this point you should configure Chaste with CMake or deprecated Scons.
You will also need the (updated-since-publication) source for the CellBasedComparison2017 project. This can be done by checking out the version from the repository by using the command
in the Chaste directory. Note that username for checking out the project code is ‘anonymous’. When prompted for a password then please give an email address.
Now the project should be installed, and everything should compile and run correctly. You can now run the tests or simulations, or create your own test suites.
Documentation
There are two folders - src
and test
.
- The
src
folder contains classes which add functionality to the core Chaste code. - The
test
folder contains:
- TestCellSortingLiteratePaper.hpp - this file can be run to generate the results in Figures 2 and 3.
- TestCylindricalCryptLiteratePaper.hpp - this file can be run to generate the results in Figures 4, 5 and 6.
- TestDeltaNotchLiteratePaper.hpp - this file can be run to generate the results in Figures 7 and 8.
- TestMorphogenMonolayerLiteratePaper.hpp - this file can be run to generate the results in Figures 9, 10 and 11.
Clicking on the images below will take you to the code to run the corresponding simulation.
Adhesion | Proliferation | Short-range signalling | Long-range signalling | |
---|---|---|---|---|
CA | ||||
CP | ||||
OS | ||||
VT | ||||
VM |
Running tests
With SCons you can run tests with,
With CMake you can run tests with,
NB: the paper was developed with the specific tagged development version of Chaste
. It does not work with release version 3.4 or under, but will work on future releases.
For further information on using Chaste, see the extensive guide material. You may also wish to look at some of the basic user tutorials.