bpp-phyl  2.2.0
bpp::MarkovModulatedSubstitutionModel Class Referenceabstract

Partial implementation of the Markov-modulated class of substitution models. More...

#include <Bpp/Phyl/Model/MarkovModulatedSubstitutionModel.h>

+ Inheritance diagram for bpp::MarkovModulatedSubstitutionModel:
+ Collaboration diagram for bpp::MarkovModulatedSubstitutionModel:

Public Member Functions

 MarkovModulatedSubstitutionModel (ReversibleSubstitutionModel *model, unsigned int nbRates, bool normalizeRateChanges, const std::string &prefix)
 Build a new MarkovModulatedSubstitutionModel object. More...
 
 MarkovModulatedSubstitutionModel (const MarkovModulatedSubstitutionModel &model)
 
MarkovModulatedSubstitutionModeloperator= (const MarkovModulatedSubstitutionModel &model)
 
virtual ~MarkovModulatedSubstitutionModel ()
 
MarkovModulatedSubstitutionModelclone () const =0
 
const Alphabet * getAlphabet () const
 
size_t getNumberOfStates () const
 Get the number of states. More...
 
const StateMapgetStateMap () const
 
const std::vector< int > & getAlphabetStates () const
 
std::string getAlphabetStateAsChar (size_t index) const
 
int getAlphabetStateAsInt (size_t index) const
 
std::vector< size_t > getModelStates (int code) const
 Get the state in the model corresponding to a particular state in the alphabet. More...
 
std::vector< size_t > getModelStates (const std::string &code) const
 Get the state in the model corresponding to a particular state in the alphabet. More...
 
const Vdouble & getFrequencies () const
 
const Matrix< double > & getExchangeabilityMatrix () const
 
const Matrix< double > & getGenerator () const
 
const Matrix< double > & getPij_t (double t) const
 
const Matrix< double > & getdPij_dt (double t) const
 
const Matrix< double > & getd2Pij_dt2 (double t) const
 
const Vdouble & getEigenValues () const
 
const Vdouble & getIEigenValues () const
 
bool isDiagonalizable () const
 
bool isNonSingular () const
 
const Matrix< double > & getRowLeftEigenVectors () const
 
const Matrix< double > & getColumnRightEigenVectors () const
 
double freq (size_t i) const
 
double Sij (size_t i, size_t j) const
 
double Qij (size_t i, size_t j) const
 
double Pij_t (size_t i, size_t j, double t) const
 
double dPij_dt (size_t i, size_t j, double t) const
 
double d2Pij_dt2 (size_t i, size_t j, double t) const
 
double getInitValue (size_t i, int state) const throw (IndexOutOfBoundsException, BadIntException)
 
void setFreqFromData (const SequenceContainer &data, double pseudoCount=0)
 Set equilibrium frequencies equal to the frequencies estimated from the data. More...
 
const ReversibleSubstitutionModelgetNestedModel () const
 
size_t getRate (size_t i) const
 Get the rate category corresponding to a particular state in the compound model. More...
 
double getRate () const
 Get the rate. More...
 
void setRate (double rate)
 Set the rate of the model (must be positive). More...
 
double getScale () const
 Get the scalar product of diagonal elements of the generator and the frequencies vector. If the generator is normalized, then scale=1. Otherwise each element must be multiplied by 1/scale. More...
 
void setScale (double scale)
 Multiplies the current generator by the given scale. More...
 
void enableEigenDecomposition (bool yn)
 Set if eigenValues and Vectors must be computed. More...
 
bool enableEigenDecomposition ()
 Tell if eigenValues and Vectors must be computed. More...
 
virtual void fireParameterChanged (const ParameterList &parameters)
 Tells the model that a parameter value has changed. More...
 
void setNamespace (const std::string &prefix)
 
virtual std::string getName () const =0
 Get the name of the model. More...
 
virtual void addRateParameter ()=0
 
virtual void setFreq (std::map< int, double > &frequencies)
 Set equilibrium frequencies. More...
 
virtual const FrequenciesSetgetFrequenciesSet () const
 If the model owns a FrequenciesSet, returns a pointer to it, otherwise return 0. More...
 

Protected Member Functions

virtual void updateMatrices ()
 
virtual void updateRatesModel ()=0
 Update the rates vector, generator and equilibrium frequencies. More...
 

Protected Attributes

ReversibleSubstitutionModelmodel_
 
MarkovModulatedStateMap stateMap_
 
size_t nbStates_
 
size_t nbRates_
 
RowMatrix< double > ratesGenerator_
 
RowMatrix< double > generator_
 The generator matrix $Q$ of the model. More...
 
RowMatrix< double > exchangeability_
 The exchangeability matrix $S$ of the model. More...
 
RowMatrix< double > leftEigenVectors_
 The $U$ matrix made of left eigen vectors (by row). More...
 
RowMatrix< double > rightEigenVectors_
 The $U^-1$ matrix made of right eigen vectors (by column). More...
 
Vdouble eigenValues_
 The vector of real parts of eigen values. More...
 
Vdouble iEigenValues_
 The vector of imaginary parts of the eigen values (zero in case of reversible pmodel). More...
 
bool eigenDecompose_
 Tell if the eigen decomposition should be performed. More...
 
RowMatrix< double > pijt_
 These ones are for bookkeeping: More...
 
RowMatrix< double > dpijt_
 
RowMatrix< double > d2pijt_
 
Vdouble freq_
 The vector of equilibrium frequencies. More...
 
bool normalizeRateChanges_
 
std::string nestedPrefix_
 
Rate generator.

These variables must be initialized in the constructor of the derived class.

RowMatrix< double > rates_
 
RowMatrix< double > ratesExchangeability_
 
Vdouble ratesFreq_
 

Detailed Description

Partial implementation of the Markov-modulated class of substitution models.

This class wraps a substitution model and provide a matrix describing rate changes. The rate matrix must be initialized by derived classes of this class. Using these matrices, the diagonalization procedure of Galtier and Jean-Marie is used.

Such models can be described using two matrices: a substitution matrix, $M$, with size $m$, which is a "standard" substitution model of any alphabet type, and a rate matrix $G$ of size $g$. The generator of the markov-modulated model, $Q$ can be written using Kronecker matrix operands:

\[ Q=D_R \otimes M + G \otimes I_m, \]

where $D_R$ is the diagonal matrix of all rates, and $I_m$ is the identity matrix of size $m$.

This generator is normalized so that branch lengths are measured in unit of mean number of substitutions per site, where susbstitution here means "change of alphabet state". Rate changes are not counted.

Galtier N. and Jean-Marie A., Markov-modulated Markov chains and the covarion process of molecular evolution (2004). Journal of Computational Biology, 11:727-33.

Definition at line 75 of file MarkovModulatedSubstitutionModel.h.

Constructor & Destructor Documentation

◆ MarkovModulatedSubstitutionModel() [1/2]

bpp::MarkovModulatedSubstitutionModel::MarkovModulatedSubstitutionModel ( ReversibleSubstitutionModel model,
unsigned int  nbRates,
bool  normalizeRateChanges,
const std::string &  prefix 
)
inline

Build a new MarkovModulatedSubstitutionModel object.

Parameters
modelThe substitution model to use. Can be of any alphabet type, and will be owned by this instance.
nbRatesThe number of rate classes
normalizeRateChangesTells if the branch lengths must be computed in terms of rate and state NB: In most cases, this parameter should be set to false.
prefixThe parameter namespace to be forwarded to the AbstractParametrizable constructor. changes instead of state change only.

Definition at line 161 of file MarkovModulatedSubstitutionModel.h.

References model_, and nestedPrefix_.

◆ MarkovModulatedSubstitutionModel() [2/2]

MarkovModulatedSubstitutionModel::MarkovModulatedSubstitutionModel ( const MarkovModulatedSubstitutionModel model)

Definition at line 51 of file MarkovModulatedSubstitutionModel.cpp.

◆ ~MarkovModulatedSubstitutionModel()

virtual bpp::MarkovModulatedSubstitutionModel::~MarkovModulatedSubstitutionModel ( )
inlinevirtual

Definition at line 178 of file MarkovModulatedSubstitutionModel.h.

References model_.

Member Function Documentation

◆ addRateParameter()

virtual void bpp::SubstitutionModel::addRateParameter ( )
pure virtualinherited

◆ clone()

MarkovModulatedSubstitutionModel* bpp::MarkovModulatedSubstitutionModel::clone ( ) const
pure virtual

Implements bpp::ReversibleSubstitutionModel.

Implemented in bpp::G2001, and bpp::TS98.

◆ d2Pij_dt2()

double bpp::MarkovModulatedSubstitutionModel::d2Pij_dt2 ( size_t  i,
size_t  j,
double  t 
) const
inlinevirtual
Returns
The second order derivative of the probability of change from state i to state j with respect to time t, at time t.
See also
getd2Pij_dt2(), getStates()

Implements bpp::SubstitutionModel.

Definition at line 230 of file MarkovModulatedSubstitutionModel.h.

References getd2Pij_dt2().

◆ dPij_dt()

double bpp::MarkovModulatedSubstitutionModel::dPij_dt ( size_t  i,
size_t  j,
double  t 
) const
inlinevirtual
Returns
The first order derivative of the probability of change from state i to state j with respect to time t, at time t.
See also
getdPij_dt(), getStates()

Implements bpp::SubstitutionModel.

Definition at line 229 of file MarkovModulatedSubstitutionModel.h.

References getdPij_dt().

◆ enableEigenDecomposition() [1/2]

void bpp::MarkovModulatedSubstitutionModel::enableEigenDecomposition ( bool  yn)
inlinevirtual

Set if eigenValues and Vectors must be computed.

Implements bpp::SubstitutionModel.

Definition at line 271 of file MarkovModulatedSubstitutionModel.h.

References eigenDecompose_.

◆ enableEigenDecomposition() [2/2]

bool bpp::MarkovModulatedSubstitutionModel::enableEigenDecomposition ( )
inlinevirtual

Tell if eigenValues and Vectors must be computed.

Implements bpp::SubstitutionModel.

Definition at line 273 of file MarkovModulatedSubstitutionModel.h.

References eigenDecompose_.

◆ fireParameterChanged()

virtual void bpp::MarkovModulatedSubstitutionModel::fireParameterChanged ( const ParameterList &  parameters)
inlinevirtual

Tells the model that a parameter value has changed.

This updates the matrices consequently.

Reimplemented in bpp::G2001.

Definition at line 280 of file MarkovModulatedSubstitutionModel.h.

References model_, updateMatrices(), and updateRatesModel().

Referenced by bpp::G2001::fireParameterChanged().

◆ freq()

double bpp::MarkovModulatedSubstitutionModel::freq ( size_t  i) const
inlinevirtual
Returns
Equilibrium frequency associated to character i.
See also
getFrequencies(), getStates()

Implements bpp::SubstitutionModel.

Definition at line 224 of file MarkovModulatedSubstitutionModel.h.

References freq_.

◆ getAlphabet()

const Alphabet* bpp::MarkovModulatedSubstitutionModel::getAlphabet ( ) const
inlinevirtual
Returns
Get the alphabet associated to this model.

Implements bpp::SubstitutionModel.

Definition at line 189 of file MarkovModulatedSubstitutionModel.h.

References bpp::SubstitutionModel::getAlphabet(), and model_.

◆ getAlphabetStateAsChar()

std::string bpp::MarkovModulatedSubstitutionModel::getAlphabetStateAsChar ( size_t  index) const
inlinevirtual
Parameters
indexThe model state.
Returns
The corresponding alphabet state as character code.

Implements bpp::SubstitutionModel.

Definition at line 197 of file MarkovModulatedSubstitutionModel.h.

References bpp::AbstractStateMap::getAlphabetStateAsChar(), and stateMap_.

◆ getAlphabetStateAsInt()

int bpp::MarkovModulatedSubstitutionModel::getAlphabetStateAsInt ( size_t  index) const
inlinevirtual
Parameters
indexThe model state.
Returns
The corresponding alphabet state as character code.

Implements bpp::SubstitutionModel.

Definition at line 199 of file MarkovModulatedSubstitutionModel.h.

References bpp::AbstractStateMap::getAlphabetStateAsInt(), and stateMap_.

◆ getAlphabetStates()

const std::vector<int>& bpp::MarkovModulatedSubstitutionModel::getAlphabetStates ( ) const
inlinevirtual
Returns
The alphabet states of each state of the model, as a vector of int codes.
See also
Alphabet

Implements bpp::SubstitutionModel.

Definition at line 195 of file MarkovModulatedSubstitutionModel.h.

References bpp::AbstractStateMap::getAlphabetStates(), and stateMap_.

◆ getColumnRightEigenVectors()

const Matrix<double>& bpp::MarkovModulatedSubstitutionModel::getColumnRightEigenVectors ( ) const
inlinevirtual
Returns
A matrix with right eigen vectors. Each column in the matrix stands for an eigen vector.

Implements bpp::SubstitutionModel.

Definition at line 222 of file MarkovModulatedSubstitutionModel.h.

References rightEigenVectors_.

◆ getd2Pij_dt2()

const Matrix< double > & MarkovModulatedSubstitutionModel::getd2Pij_dt2 ( double  t) const
virtual
Returns
All second order derivatives of the probability of change from state i to state j with respect to time t, at time t.
See also
d2Pij_dt2()

Implements bpp::SubstitutionModel.

Definition at line 195 of file MarkovModulatedSubstitutionModel.cpp.

References d2pijt_, eigenValues_, leftEigenVectors_, and rightEigenVectors_.

Referenced by d2Pij_dt2().

◆ getdPij_dt()

const Matrix< double > & MarkovModulatedSubstitutionModel::getdPij_dt ( double  t) const
virtual
Returns
Get all first order derivatives of the probability of change from state i to state j with respect to time t, at time t.
See also
dPij_dt()

Implements bpp::SubstitutionModel.

Definition at line 189 of file MarkovModulatedSubstitutionModel.cpp.

References dpijt_, eigenValues_, leftEigenVectors_, and rightEigenVectors_.

Referenced by dPij_dt().

◆ getEigenValues()

const Vdouble& bpp::MarkovModulatedSubstitutionModel::getEigenValues ( ) const
inlinevirtual
Returns
A vector with all real parts of the eigen values of the generator of this model;

Implements bpp::SubstitutionModel.

Definition at line 215 of file MarkovModulatedSubstitutionModel.h.

References eigenValues_.

◆ getExchangeabilityMatrix()

const Matrix<double>& bpp::MarkovModulatedSubstitutionModel::getExchangeabilityMatrix ( ) const
inlinevirtual
Returns
The matrix of exchangeability terms. It is recommended that exchangeability matrix be normalized so that the normalized generator be obtained directly by the dot product $S . \pi$.

Implements bpp::SubstitutionModel.

Definition at line 207 of file MarkovModulatedSubstitutionModel.h.

References exchangeability_.

◆ getFrequencies()

const Vdouble& bpp::MarkovModulatedSubstitutionModel::getFrequencies ( ) const
inlinevirtual
Returns
A vector of all equilibrium frequencies.
See also
freq()

Implements bpp::SubstitutionModel.

Definition at line 205 of file MarkovModulatedSubstitutionModel.h.

References freq_.

◆ getFrequenciesSet()

◆ getGenerator()

const Matrix<double>& bpp::MarkovModulatedSubstitutionModel::getGenerator ( ) const
inlinevirtual
Returns
The normalized Markov generator matrix, i.e. all normalized rates of changes from state i to state j. The generator is normalized so that (i) $ \forall i; \sum_j Q_{i,j} = 0 $, meaning that $ $ \forall i; Q_{i,i} = -\sum_{j \neq i}Q_{i,j}$, and (ii) $ \sum_i Q_{i,i} \times \pi_i = -1$. This means that, under normalization, the mean rate of replacement at equilibrium is 1 and that time $t$ are measured in units of expected number of changes per site. Additionnaly, the rate_ attibute provides the possibility to increase or decrease this mean rate.

See Kosiol and Goldman (2005), Molecular Biology And Evolution 22(2) 193-9.

See also
Qij()

Implements bpp::SubstitutionModel.

Definition at line 209 of file MarkovModulatedSubstitutionModel.h.

References generator_.

◆ getIEigenValues()

const Vdouble& bpp::MarkovModulatedSubstitutionModel::getIEigenValues ( ) const
inlinevirtual
Returns
A vector with all imaginary parts of the eigen values of the generator of this model;

Implements bpp::SubstitutionModel.

Definition at line 216 of file MarkovModulatedSubstitutionModel.h.

References iEigenValues_.

◆ getInitValue()

double MarkovModulatedSubstitutionModel::getInitValue ( size_t  i,
int  state 
) const
throw (IndexOutOfBoundsException,
BadIntException
)
virtual

This method is used to initialize likelihoods in reccursions. It typically sends 1 if i = state, 0 otherwise, where i is one of the possible states of the alphabet allowed in the model and state is the observed state in the considered sequence/site.

Parameters
ithe index of the state in the model.
stateAn observed state in the sequence/site.
Returns
1 or 0 depending if the two states are compatible.
Exceptions
IndexOutOfBoundsExceptionif array position is out of range.
BadIntExceptionif states are not allowed in the associated alphabet.
See also
getStates();

Implements bpp::SubstitutionModel.

Definition at line 203 of file MarkovModulatedSubstitutionModel.cpp.

◆ getModelStates() [1/2]

std::vector<size_t> bpp::MarkovModulatedSubstitutionModel::getModelStates ( int  code) const
inlinevirtual

Get the state in the model corresponding to a particular state in the alphabet.

Parameters
codeThe alphabet state to check.
Returns
A vector of indices of model states.

Implements bpp::SubstitutionModel.

Definition at line 201 of file MarkovModulatedSubstitutionModel.h.

References bpp::AbstractStateMap::getModelStates(), and stateMap_.

◆ getModelStates() [2/2]

std::vector<size_t> bpp::MarkovModulatedSubstitutionModel::getModelStates ( const std::string &  code) const
inlinevirtual

Get the state in the model corresponding to a particular state in the alphabet.

Parameters
codeThe alphabet state to check.
Returns
A vector of indices of model states.

Implements bpp::SubstitutionModel.

Definition at line 203 of file MarkovModulatedSubstitutionModel.h.

References bpp::AbstractStateMap::getModelStates(), and stateMap_.

◆ getName()

virtual std::string bpp::SubstitutionModel::getName ( ) const
pure virtualinherited

Get the name of the model.

Returns
The name of this model.

Implemented in bpp::YpR_Gen, bpp::YpR_Sym, bpp::F84, bpp::HKY85, bpp::JCprot, bpp::T92, bpp::K80, bpp::RN95, bpp::GTR, bpp::TN93, bpp::RE08, bpp::MixtureOfSubstitutionModels, bpp::JCnuc, bpp::RN95s, bpp::CodonDistanceFrequenciesSubstitutionModel, bpp::BinarySubstitutionModel, bpp::CodonDistancePhaseFrequenciesSubstitutionModel, bpp::UserProteinSubstitutionModel, bpp::CodonDistanceFitnessPhaseFrequenciesSubstitutionModel, bpp::MixtureOfASubstitutionModel, bpp::LLG08_EX3, bpp::WordSubstitutionModel, bpp::LLG08_EHO, bpp::LLG08_UL3, bpp::WAG01, bpp::SSR, bpp::LG10_EX_EHO, bpp::CodonDistanceSubstitutionModel, bpp::L95, bpp::LGL08_CAT, bpp::LLG08_EX2, bpp::LLG08_UL2, bpp::DSO78, bpp::JTT92, bpp::CodonRateFrequenciesSubstitutionModel, bpp::LG08, bpp::YNGKP_M1, bpp::G2001, bpp::gBGC, bpp::YNGKP_M8, bpp::GY94, bpp::YNGKP_M7, bpp::YN98, bpp::YNGKP_M3, bpp::TS98, bpp::TripletSubstitutionModel, bpp::YNGKP_M2, bpp::MG94, bpp::CodonRateSubstitutionModel, bpp::Coala, bpp::LLG08_EX3::EmbeddedModel, bpp::LLG08_EHO::EmbeddedModel, bpp::LLG08_UL3::EmbeddedModel, bpp::LG10_EX_EHO::EmbeddedModel, bpp::LGL08_CAT::EmbeddedModel, bpp::LLG08_EX2::EmbeddedModel, and bpp::LLG08_UL2::EmbeddedModel.

Referenced by bpp::AbstractCodonFitnessSubstitutionModel::AbstractCodonFitnessSubstitutionModel(), bpp::AbstractSubstitutionModel::fireParameterChanged(), bpp::MixtureOfSubstitutionModels::getSubmodelNumbers(), bpp::BppOSubstitutionModelFormat::readMixed_(), bpp::AbstractBiblioSubstitutionModel::updateMatrices(), and bpp::BppOSubstitutionModelFormat::write().

◆ getNestedModel()

const ReversibleSubstitutionModel* bpp::MarkovModulatedSubstitutionModel::getNestedModel ( ) const
inline

Definition at line 241 of file MarkovModulatedSubstitutionModel.h.

References model_.

Referenced by bpp::BppOSubstitutionModelFormat::write().

◆ getNumberOfStates()

size_t bpp::MarkovModulatedSubstitutionModel::getNumberOfStates ( ) const
inlinevirtual

Get the number of states.

For most models, this equals the size of the alphabet.

See also
getAlphabetChars for the list of supported states.
Returns
The number of different states in the model.

Implements bpp::SubstitutionModel.

Definition at line 191 of file MarkovModulatedSubstitutionModel.h.

References nbRates_, and nbStates_.

◆ getPij_t()

const Matrix< double > & MarkovModulatedSubstitutionModel::getPij_t ( double  t) const
virtual
Returns
All probabilities of change from state i to state j during time t.
See also
Pij_t()

Implements bpp::SubstitutionModel.

Definition at line 180 of file MarkovModulatedSubstitutionModel.cpp.

References eigenValues_, leftEigenVectors_, nbRates_, nbStates_, pijt_, and rightEigenVectors_.

Referenced by Pij_t().

◆ getRate() [1/2]

size_t bpp::MarkovModulatedSubstitutionModel::getRate ( size_t  i) const
inline

Get the rate category corresponding to a particular state in the compound model.

Parameters
iThe state.
Returns
The corresponding rate category.
See also
getState;

Definition at line 250 of file MarkovModulatedSubstitutionModel.h.

References nbStates_.

◆ getRate() [2/2]

double bpp::MarkovModulatedSubstitutionModel::getRate ( ) const
inlinevirtual

Get the rate.

Implements bpp::SubstitutionModel.

Reimplemented in bpp::TS98.

Definition at line 255 of file MarkovModulatedSubstitutionModel.h.

References bpp::SubstitutionModel::getRate(), and model_.

◆ getRowLeftEigenVectors()

const Matrix<double>& bpp::MarkovModulatedSubstitutionModel::getRowLeftEigenVectors ( ) const
inlinevirtual
Returns
A matrix with left eigen vectors. Each row in the matrix stands for an eigen vector.

Implements bpp::SubstitutionModel.

Definition at line 221 of file MarkovModulatedSubstitutionModel.h.

References leftEigenVectors_.

◆ getScale()

double bpp::MarkovModulatedSubstitutionModel::getScale ( ) const
inlinevirtual

Get the scalar product of diagonal elements of the generator and the frequencies vector. If the generator is normalized, then scale=1. Otherwise each element must be multiplied by 1/scale.

Returns
Minus the scalar product of diagonal elements and the frequencies vector.

Implements bpp::SubstitutionModel.

Definition at line 259 of file MarkovModulatedSubstitutionModel.h.

References freq_, and generator_.

◆ getStateMap()

const StateMap& bpp::MarkovModulatedSubstitutionModel::getStateMap ( ) const
inlinevirtual
Returns
The mapping of model states with alphabet states.

Implements bpp::SubstitutionModel.

Definition at line 193 of file MarkovModulatedSubstitutionModel.h.

References stateMap_.

◆ isDiagonalizable()

bool bpp::MarkovModulatedSubstitutionModel::isDiagonalizable ( ) const
inlinevirtual
Returns
True if the model is diagonalizable in R.

Implements bpp::SubstitutionModel.

Definition at line 218 of file MarkovModulatedSubstitutionModel.h.

◆ isNonSingular()

bool bpp::MarkovModulatedSubstitutionModel::isNonSingular ( ) const
inlinevirtual
Returns
True is the model is non-singular.

Implements bpp::SubstitutionModel.

Definition at line 219 of file MarkovModulatedSubstitutionModel.h.

◆ operator=()

◆ Pij_t()

double bpp::MarkovModulatedSubstitutionModel::Pij_t ( size_t  i,
size_t  j,
double  t 
) const
inlinevirtual
Returns
The probability of change from state i to state j during time t.
See also
getPij_t(), getStates()

Implements bpp::SubstitutionModel.

Definition at line 228 of file MarkovModulatedSubstitutionModel.h.

References getPij_t().

◆ Qij()

double bpp::MarkovModulatedSubstitutionModel::Qij ( size_t  i,
size_t  j 
) const
inlinevirtual
Returns
The rate in the generator of change from state i to state j.
See also
getStates();

Implements bpp::SubstitutionModel.

Definition at line 226 of file MarkovModulatedSubstitutionModel.h.

References generator_.

◆ setFreq()

◆ setFreqFromData()

void bpp::MarkovModulatedSubstitutionModel::setFreqFromData ( const SequenceContainer &  data,
double  pseudoCount = 0 
)
inlinevirtual

Set equilibrium frequencies equal to the frequencies estimated from the data.

Parameters
dataThe sequences to use.
pseudoCountA quantity $\psi$ to add to adjust the observed values in order to prevent issues due to missing states on small data set. The corrected frequencies shall be computed as

\[ \pi_i = \frac{n_i+\psi}{\sum_j (f_j+\psi)} \]

Implements bpp::SubstitutionModel.

Definition at line 234 of file MarkovModulatedSubstitutionModel.h.

References model_, bpp::SubstitutionModel::setFreqFromData(), and updateMatrices().

◆ setNamespace()

void MarkovModulatedSubstitutionModel::setNamespace ( const std::string &  prefix)

Definition at line 220 of file MarkovModulatedSubstitutionModel.cpp.

References model_, and nestedPrefix_.

Referenced by bpp::G2001::setNamespace().

◆ setRate()

void bpp::MarkovModulatedSubstitutionModel::setRate ( double  rate)
inlinevirtual

Set the rate of the model (must be positive).

Parameters
ratemust be positive.

Implements bpp::SubstitutionModel.

Reimplemented in bpp::TS98.

Definition at line 257 of file MarkovModulatedSubstitutionModel.h.

References model_, and bpp::SubstitutionModel::setRate().

◆ setScale()

void bpp::MarkovModulatedSubstitutionModel::setScale ( double  scale)
inlinevirtual

Multiplies the current generator by the given scale.

Parameters
scalethe scale by which the generator is multiplied.

Implements bpp::SubstitutionModel.

Definition at line 266 of file MarkovModulatedSubstitutionModel.h.

References model_, bpp::SubstitutionModel::setScale(), and updateMatrices().

◆ Sij()

double bpp::MarkovModulatedSubstitutionModel::Sij ( size_t  i,
size_t  j 
) const
inlinevirtual
Returns
The exchangeability between state i and state j.

By definition Sij(i,j) = Sij(j,i).

Implements bpp::SubstitutionModel.

Definition at line 225 of file MarkovModulatedSubstitutionModel.h.

References exchangeability_.

◆ updateMatrices()

◆ updateRatesModel()

virtual void bpp::MarkovModulatedSubstitutionModel::updateRatesModel ( )
protectedpure virtual

Update the rates vector, generator and equilibrium frequencies.

This method must be implemented by the derived class. It is called by the fireParameterChanged() method.

Implemented in bpp::G2001, and bpp::TS98.

Referenced by fireParameterChanged().

Member Data Documentation

◆ d2pijt_

RowMatrix<double> bpp::MarkovModulatedSubstitutionModel::d2pijt_
mutableprotected

Definition at line 139 of file MarkovModulatedSubstitutionModel.h.

Referenced by getd2Pij_dt2(), operator=(), and updateMatrices().

◆ dpijt_

RowMatrix<double> bpp::MarkovModulatedSubstitutionModel::dpijt_
mutableprotected

Definition at line 138 of file MarkovModulatedSubstitutionModel.h.

Referenced by getdPij_dt(), operator=(), and updateMatrices().

◆ eigenDecompose_

bool bpp::MarkovModulatedSubstitutionModel::eigenDecompose_
protected

Tell if the eigen decomposition should be performed.

Definition at line 132 of file MarkovModulatedSubstitutionModel.h.

Referenced by enableEigenDecomposition(), and operator=().

◆ eigenValues_

Vdouble bpp::MarkovModulatedSubstitutionModel::eigenValues_
protected

The vector of real parts of eigen values.

Definition at line 121 of file MarkovModulatedSubstitutionModel.h.

Referenced by getd2Pij_dt2(), getdPij_dt(), getEigenValues(), getPij_t(), operator=(), and updateMatrices().

◆ exchangeability_

RowMatrix<double> bpp::MarkovModulatedSubstitutionModel::exchangeability_
protected

The exchangeability matrix $S$ of the model.

Definition at line 106 of file MarkovModulatedSubstitutionModel.h.

Referenced by getExchangeabilityMatrix(), operator=(), Sij(), and updateMatrices().

◆ freq_

Vdouble bpp::MarkovModulatedSubstitutionModel::freq_
protected

The vector of equilibrium frequencies.

Definition at line 144 of file MarkovModulatedSubstitutionModel.h.

Referenced by freq(), getFrequencies(), getScale(), operator=(), and updateMatrices().

◆ generator_

RowMatrix<double> bpp::MarkovModulatedSubstitutionModel::generator_
protected

The generator matrix $Q$ of the model.

Definition at line 101 of file MarkovModulatedSubstitutionModel.h.

Referenced by getGenerator(), getScale(), operator=(), Qij(), and updateMatrices().

◆ iEigenValues_

Vdouble bpp::MarkovModulatedSubstitutionModel::iEigenValues_
protected

The vector of imaginary parts of the eigen values (zero in case of reversible pmodel).

Definition at line 127 of file MarkovModulatedSubstitutionModel.h.

Referenced by getIEigenValues(), operator=(), and updateMatrices().

◆ leftEigenVectors_

RowMatrix<double> bpp::MarkovModulatedSubstitutionModel::leftEigenVectors_
protected

The $U$ matrix made of left eigen vectors (by row).

Definition at line 111 of file MarkovModulatedSubstitutionModel.h.

Referenced by getd2Pij_dt2(), getdPij_dt(), getPij_t(), getRowLeftEigenVectors(), operator=(), and updateMatrices().

◆ model_

◆ nbRates_

size_t bpp::MarkovModulatedSubstitutionModel::nbRates_
protected

◆ nbStates_

size_t bpp::MarkovModulatedSubstitutionModel::nbStates_
protected

◆ nestedPrefix_

std::string bpp::MarkovModulatedSubstitutionModel::nestedPrefix_
protected

◆ normalizeRateChanges_

bool bpp::MarkovModulatedSubstitutionModel::normalizeRateChanges_
protected

Definition at line 146 of file MarkovModulatedSubstitutionModel.h.

Referenced by operator=(), and updateMatrices().

◆ pijt_

RowMatrix<double> bpp::MarkovModulatedSubstitutionModel::pijt_
mutableprotected

These ones are for bookkeeping:

Definition at line 137 of file MarkovModulatedSubstitutionModel.h.

Referenced by getPij_t(), operator=(), and updateMatrices().

◆ rates_

RowMatrix<double> bpp::MarkovModulatedSubstitutionModel::rates_
protected

◆ ratesExchangeability_

RowMatrix<double> bpp::MarkovModulatedSubstitutionModel::ratesExchangeability_
protected

◆ ratesFreq_

Vdouble bpp::MarkovModulatedSubstitutionModel::ratesFreq_
protected

◆ ratesGenerator_

RowMatrix<double> bpp::MarkovModulatedSubstitutionModel::ratesGenerator_
protected

Definition at line 96 of file MarkovModulatedSubstitutionModel.h.

Referenced by operator=(), and updateMatrices().

◆ rightEigenVectors_

RowMatrix<double> bpp::MarkovModulatedSubstitutionModel::rightEigenVectors_
protected

The $U^-1$ matrix made of right eigen vectors (by column).

Definition at line 116 of file MarkovModulatedSubstitutionModel.h.

Referenced by getColumnRightEigenVectors(), getd2Pij_dt2(), getdPij_dt(), getPij_t(), operator=(), and updateMatrices().

◆ stateMap_

MarkovModulatedStateMap bpp::MarkovModulatedSubstitutionModel::stateMap_
protected

The documentation for this class was generated from the following files: