Chaste Release::3.1
|
#include <SimpleWntCellCycleModel.hpp>
Simple Wnt-dependent cell-cycle model
Definition at line 54 of file SimpleWntCellCycleModel.hpp.
SimpleWntCellCycleModel::SimpleWntCellCycleModel | ( | ) |
Constructor - just a default, mBirthTime is now set in the AbstractCellCycleModel class. mG1Duration is set very high, it is set for the individual cells when InitialiseDaughterCell is called.
Definition at line 39 of file SimpleWntCellCycleModel.cpp.
Referenced by CreateCellCycleModel().
bool SimpleWntCellCycleModel::CanCellTerminallyDifferentiate | ( | ) | [virtual] |
Overridden CanCellTerminallyDifferentiate() method.
Reimplemented from AbstractCellCycleModel.
Definition at line 252 of file SimpleWntCellCycleModel.cpp.
AbstractCellCycleModel * SimpleWntCellCycleModel::CreateCellCycleModel | ( | ) | [virtual] |
Overridden builder method to create new copies of this cell-cycle model.
Implements AbstractCellCycleModel.
Reimplemented in SingleOdeWntCellCycleModel.
Definition at line 47 of file SimpleWntCellCycleModel.cpp.
References AbstractCellCycleModel::mBirthTime, AbstractCellCycleModel::mDimension, AbstractCellCycleModel::mG2Duration, AbstractCellCycleModel::mMDuration, AbstractCellCycleModel::mMinimumGapDuration, AbstractCellCycleModel::mSDuration, AbstractCellCycleModel::mStemCellG1Duration, AbstractCellCycleModel::mTransitCellG1Duration, mUseCellProliferativeTypeDependentG1Duration, mWntLabelledThreshold, mWntStemThreshold, mWntTransitThreshold, AbstractCellCycleModel::SetBirthTime(), AbstractCellCycleModel::SetDimension(), AbstractCellCycleModel::SetG2Duration(), AbstractCellCycleModel::SetMDuration(), AbstractCellCycleModel::SetMinimumGapDuration(), AbstractCellCycleModel::SetSDuration(), AbstractCellCycleModel::SetStemCellG1Duration(), AbstractCellCycleModel::SetTransitCellG1Duration(), SetUseCellProliferativeTypeDependentG1Duration(), SetWntLabelledThreshold(), SetWntStemThreshold(), SetWntTransitThreshold(), and SimpleWntCellCycleModel().
double SimpleWntCellCycleModel::GetWntLabelledThreshold | ( | ) |
Definition at line 281 of file SimpleWntCellCycleModel.cpp.
References mWntLabelledThreshold.
double SimpleWntCellCycleModel::GetWntLevel | ( | ) | [protected] |
Get the Wnt level experienced by the cell.
Definition at line 121 of file SimpleWntCellCycleModel.cpp.
References WntConcentration< DIM >::GetWntLevel(), AbstractCellCycleModel::mDimension, AbstractCellCycleModel::mpCell, and NEVER_REACHED.
Referenced by SingleOdeWntCellCycleModel::AdjustOdeParameters(), SingleOdeWntCellCycleModel::CreateCellCycleModel(), SingleOdeWntCellCycleModel::Initialise(), and UpdateCellCyclePhase().
double SimpleWntCellCycleModel::GetWntStemThreshold | ( | ) |
Definition at line 257 of file SimpleWntCellCycleModel.cpp.
References mWntStemThreshold.
double SimpleWntCellCycleModel::GetWntTransitThreshold | ( | ) |
Definition at line 269 of file SimpleWntCellCycleModel.cpp.
References mWntTransitThreshold.
WntConcentrationType SimpleWntCellCycleModel::GetWntType | ( | ) | [protected] |
Get the type of Wnt concentration (LINEAR, RADIAL, EXPONENTIAL or NONE). This affects how the cell cycle phase is updated.
Definition at line 152 of file SimpleWntCellCycleModel.cpp.
References WntConcentration< DIM >::GetType(), AbstractCellCycleModel::mDimension, and NEVER_REACHED.
Referenced by InitialiseDaughterCell(), and UpdateCellCyclePhase().
void SimpleWntCellCycleModel::InitialiseDaughterCell | ( | ) | [virtual] |
Overridden InitialiseDaughterCell() method.
Reimplemented from AbstractSimpleCellCycleModel.
Definition at line 240 of file SimpleWntCellCycleModel.cpp.
References GetWntType(), and AbstractCellCycleModel::mpCell.
void SimpleWntCellCycleModel::OutputCellCycleModelParameters | ( | out_stream & | rParamsFile | ) | [virtual] |
Outputs cell-cycle model parameters to file.
rParamsFile | the file stream to which the parameters are output |
Reimplemented from AbstractSimpleCellCycleModel.
Reimplemented in SingleOdeWntCellCycleModel.
Definition at line 293 of file SimpleWntCellCycleModel.cpp.
References mUseCellProliferativeTypeDependentG1Duration, mWntLabelledThreshold, mWntStemThreshold, and mWntTransitThreshold.
void SimpleWntCellCycleModel::serialize | ( | Archive & | archive, |
const unsigned int | version | ||
) | [inline, private] |
Archive the cell-cycle model, never used directly - boost uses this.
archive | the archive |
version | the current version of this class |
Reimplemented from AbstractSimpleCellCycleModel.
Reimplemented in SingleOdeWntCellCycleModel.
Definition at line 67 of file SimpleWntCellCycleModel.hpp.
References RandomNumberGenerator::Instance(), mUseCellProliferativeTypeDependentG1Duration, mWntLabelledThreshold, mWntStemThreshold, and mWntTransitThreshold.
void SimpleWntCellCycleModel::SetG1Duration | ( | ) | [protected, virtual] |
Stochastically set the G1 duration. The G1 duration is taken from a normal distribution whose mean is the G1 duration given in AbstractCellCycleModel for the cell type and whose standard deviation is 1.
Called on cell creation at the start of a simulation, and for both parent and daughter cells at cell division.
Reimplemented from AbstractSimpleCellCycleModel.
Definition at line 85 of file SimpleWntCellCycleModel.cpp.
References AbstractCellCycleModel::GetStemCellG1Duration(), AbstractCellCycleModel::GetTransitCellG1Duration(), RandomNumberGenerator::Instance(), AbstractCellCycleModel::mG1Duration, AbstractCellCycleModel::mMinimumGapDuration, AbstractCellCycleModel::mpCell, mUseCellProliferativeTypeDependentG1Duration, NEVER_REACHED, and RandomNumberGenerator::NormalRandomDeviate().
void SimpleWntCellCycleModel::SetUseCellProliferativeTypeDependentG1Duration | ( | bool | useCellProliferativeTypeDependentG1Duration = true | ) |
Set whether Whether the duration of the G1 phase is dependent on cell type
useCellProliferativeTypeDependentG1Duration | - boolean, defaults to true. |
Definition at line 80 of file SimpleWntCellCycleModel.cpp.
References mUseCellProliferativeTypeDependentG1Duration.
Referenced by SingleOdeWntCellCycleModel::CreateCellCycleModel(), and CreateCellCycleModel().
void SimpleWntCellCycleModel::SetWntLabelledThreshold | ( | double | wntLabelledThreshold | ) |
Set mWntLabelledThreshold.
wntLabelledThreshold | the value of mWntLabelledThreshold |
Definition at line 286 of file SimpleWntCellCycleModel.cpp.
References mWntLabelledThreshold.
Referenced by SingleOdeWntCellCycleModel::CreateCellCycleModel(), and CreateCellCycleModel().
void SimpleWntCellCycleModel::SetWntStemThreshold | ( | double | wntStemThreshold | ) |
Set mWntStemThreshold.
wntStemThreshold | the value of mWntStemThreshold |
Definition at line 262 of file SimpleWntCellCycleModel.cpp.
References mWntStemThreshold.
Referenced by SingleOdeWntCellCycleModel::CreateCellCycleModel(), and CreateCellCycleModel().
void SimpleWntCellCycleModel::SetWntTransitThreshold | ( | double | wntTransitThreshold | ) |
Set mWntTransitThreshold.
wntTransitThreshold | the value of mWntTransitThreshold |
Definition at line 274 of file SimpleWntCellCycleModel.cpp.
References mWntTransitThreshold.
Referenced by SingleOdeWntCellCycleModel::CreateCellCycleModel(), and CreateCellCycleModel().
void SimpleWntCellCycleModel::UpdateCellCyclePhase | ( | ) | [virtual] |
Overridden UpdateCellCyclePhase() method.
Reimplemented from AbstractSimpleCellCycleModel.
Reimplemented in SingleOdeWntCellCycleModel.
Definition at line 181 of file SimpleWntCellCycleModel.cpp.
References GetWntLevel(), GetWntType(), AbstractCellCycleModel::mpCell, mWntLabelledThreshold, mWntStemThreshold, mWntTransitThreshold, and NEVER_REACHED.
friend class boost::serialization::access [friend] |
Needed for serialization.
Reimplemented from AbstractSimpleCellCycleModel.
Reimplemented in SingleOdeWntCellCycleModel.
Definition at line 59 of file SimpleWntCellCycleModel.hpp.
Whether to use different mean G1 durations for different cell types. For use in SetG1Duration().
Definition at line 86 of file SimpleWntCellCycleModel.hpp.
Referenced by SingleOdeWntCellCycleModel::CreateCellCycleModel(), CreateCellCycleModel(), OutputCellCycleModelParameters(), serialize(), SetG1Duration(), and SetUseCellProliferativeTypeDependentG1Duration().
double SimpleWntCellCycleModel::mWntLabelledThreshold [protected] |
Non-dimensionalized Wnt threshold, above which labelled cells progress through the cell cycle.
Definition at line 101 of file SimpleWntCellCycleModel.hpp.
Referenced by SingleOdeWntCellCycleModel::CreateCellCycleModel(), CreateCellCycleModel(), GetWntLabelledThreshold(), OutputCellCycleModelParameters(), serialize(), SetWntLabelledThreshold(), and UpdateCellCyclePhase().
double SimpleWntCellCycleModel::mWntStemThreshold [protected] |
Non-dimensionalized Wnt threshold, above which cells behave as stem cells.
Definition at line 91 of file SimpleWntCellCycleModel.hpp.
Referenced by SingleOdeWntCellCycleModel::CreateCellCycleModel(), CreateCellCycleModel(), GetWntStemThreshold(), OutputCellCycleModelParameters(), serialize(), SetWntStemThreshold(), and UpdateCellCyclePhase().
double SimpleWntCellCycleModel::mWntTransitThreshold [protected] |
Non-dimensionalized Wnt threshold, above which cells progress through the cell cycle.
Definition at line 96 of file SimpleWntCellCycleModel.hpp.
Referenced by SingleOdeWntCellCycleModel::CreateCellCycleModel(), CreateCellCycleModel(), GetWntTransitThreshold(), OutputCellCycleModelParameters(), serialize(), SetWntTransitThreshold(), and UpdateCellCyclePhase().