bpp-phyl3  3.0.0
bpp::MixedTransitionModelInterface Class Referenceabstract

Interface for Transition models, defined as a mixture of "simple" transition models. More...

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

+ Inheritance diagram for bpp::MixedTransitionModelInterface:
+ Collaboration diagram for bpp::MixedTransitionModelInterface:

Public Member Functions

 MixedTransitionModelInterface ()
 
virtual ~MixedTransitionModelInterface ()
 
virtual MixedTransitionModelInterfaceclone () const override=0
 
virtual const TransitionModelInterfacenModel (size_t i) const =0
 Returns a specific model from the mixture. More...
 
virtual std::shared_ptr< const TransitionModelInterfacegetNModel (size_t i) const =0
 
virtual double getNProbability (size_t i) const =0
 Returns the probability of a specific model from the mixture. More...
 
virtual const std::vector< double > & getProbabilities () const =0
 
virtual void setNProbability (size_t i, double prob)=0
 Sets the probability of a specific model from the mixture. More...
 
virtual size_t getNumberOfModels () const =0
 
virtual const std::vector< double > & getVRates () const =0
 Returns the rates of the submodels. More...
 
virtual double getNRate (size_t i) const =0
 Returns the rate of a specific submodel. More...
 
virtual void setVRates (const Vdouble &vd)=0
 Sets the rates of the submodels to be proportional to a given vector, and normalizes them so that the mean rate of the mixture equals rate_. More...
 
virtual void normalizeVRates ()=0
 Normalizes the rates of the submodels so that the mean rate of the mixture equals rate_. More...
 
virtual const TransitionModelInterfacemodel (const std::string &name) const =0
 Access the submodel with the given name. More...
 
virtual Vuint getSubmodelNumbers (const std::string &desc) const =0
 Returns the vector of numbers of the submodels in the mixture that match a description. More...
 
virtual double freq (size_t i) const =0
 
virtual double Pij_t (size_t i, size_t j, double t) const =0
 
virtual double dPij_dt (size_t i, size_t j, double t) const =0
 
virtual double d2Pij_dt2 (size_t i, size_t j, double t) const =0
 
virtual const VdoublegetFrequencies () const =0
 
virtual bool computeFrequencies () const =0
 
virtual void computeFrequencies (bool yn)=0
 
virtual const Matrix< double > & getPij_t (double t) const =0
 
virtual const Matrix< double > & getdPij_dt (double t) const =0
 
virtual const Matrix< double > & getd2Pij_dt2 (double t) const =0
 
virtual const Eigen::VectorXd & Lik_t (const Eigen::VectorXd &values, double t) const =0
 
virtual const Eigen::VectorXd & dLik_dt (const Eigen::VectorXd &values, double t) const =0
 
virtual const Eigen::VectorXd & d2Lik_dt2 (const Eigen::VectorXd &values, double t) const =0
 
virtual void setFreqFromData (const SequenceDataInterface &data, double pseudoCount=0)=0
 Set equilibrium frequencies equal to the frequencies estimated from the data. More...
 
virtual void setFreq (std::map< int, double > &frequencies)=0
 Set equilibrium frequencies. More...
 
virtual std::string getName () const =0
 Get the name of the model. More...
 
virtual const std::vector< int > & getAlphabetStates () const =0
 
virtual const StateMapInterfacestateMap () const =0
 
virtual std::shared_ptr< const StateMapInterfacegetStateMap () const =0
 
virtual std::vector< size_t > getModelStates (int code) const =0
 Get the state in the model corresponding to a particular state in the alphabet. More...
 
virtual std::vector< size_t > getModelStates (const std::string &code) const =0
 Get the state in the model corresponding to a particular state in the alphabet. More...
 
virtual int getAlphabetStateAsInt (size_t index) const =0
 
virtual std::string getAlphabetStateAsChar (size_t index) const =0
 
virtual const Alphabetalphabet () const =0
 
virtual std::shared_ptr< const AlphabetgetAlphabet () const =0
 
virtual const FrequencySetInterfacefrequencySet () const =0
 
virtual size_t getNumberOfStates () const =0
 Get the number of states. More...
 
virtual double getInitValue (size_t i, int state) const =0
 
virtual double getRate () const =0
 Get the rate. More...
 
virtual void setRate (double rate)=0
 Set the rate of the model (must be positive). More...
 
virtual void addRateParameter ()=0
 
virtual size_t getNumberOfIndependentParameters () const=0
 
virtual void aliasParameters (const std::string &p1, const std::string &p2)=0
 
virtual void aliasParameters (std::map< std::string, std::string > &unparsedParams, bool verbose)=0
 
virtual void unaliasParameters (const std::string &p1, const std::string &p2)=0
 
virtual const ParameterListgetIndependentParameters () const=0
 
virtual std::vector< std::string > getAlias (const std::string &name) const=0
 
virtual std::map< std::string, std::string > getAliases () const=0
 
virtual bool hasParameter (const std::string &name) const=0
 
virtual const ParameterListgetParameters () const=0
 
virtual const Parameterparameter (const std::string &name) const=0
 
virtual double getParameterValue (const std::string &name) const=0
 
virtual void setAllParametersValues (const ParameterList &parameters)=0
 
virtual void setParameterValue (const std::string &name, double value)=0
 
virtual void setParametersValues (const ParameterList &parameters)=0
 
virtual bool matchParametersValues (const ParameterList &parameters)=0
 
virtual void removeConstraint (const std::string &name)=0
 
virtual void setConstraint (const std::string &name, std::shared_ptr< ConstraintInterface > constraint)=0
 
virtual size_t getNumberOfParameters () const=0
 
virtual void setNamespace (const std::string &prefix)=0
 
virtual std::string getNamespace () const=0
 
virtual std::string getParameterNameWithoutNamespace (const std::string &name) const=0
 

Protected Member Functions

virtual TransitionModelInterfacenModel_ (size_t i)=0
 
virtual VdoublegetFrequencies_ ()=0
 
virtual ParameterListgetParameters_ ()=0
 

Friends

class AbstractBiblioMixedTransitionModel
 
class InMixedSubstitutionModel
 

Detailed Description

Interface for Transition models, defined as a mixture of "simple" transition models.

Author
Laurent Guéguen

Definition at line 22 of file MixedTransitionModel.h.

Constructor & Destructor Documentation

◆ MixedTransitionModelInterface()

bpp::MixedTransitionModelInterface::MixedTransitionModelInterface ( )
inline

Definition at line 26 of file MixedTransitionModel.h.

◆ ~MixedTransitionModelInterface()

virtual bpp::MixedTransitionModelInterface::~MixedTransitionModelInterface ( )
inlinevirtual

Definition at line 28 of file MixedTransitionModel.h.

Member Function Documentation

◆ addRateParameter()

◆ alphabet()

◆ clone()

◆ computeFrequencies() [1/2]

◆ computeFrequencies() [2/2]

virtual void bpp::TransitionModelInterface::computeFrequencies ( bool  yn)
pure virtualinherited

◆ d2Lik_dt2()

virtual const Eigen::VectorXd& bpp::TransitionModelInterface::d2Lik_dt2 ( const Eigen::VectorXd &  values,
double  t 
) const
pure virtualinherited

◆ d2Pij_dt2()

◆ dLik_dt()

virtual const Eigen::VectorXd& bpp::TransitionModelInterface::dLik_dt ( const Eigen::VectorXd &  values,
double  t 
) const
pure virtualinherited

◆ dPij_dt()

◆ freq()

◆ frequencySet()

◆ getAlphabet()

◆ getAlphabetStateAsChar()

virtual std::string bpp::BranchModelInterface::getAlphabetStateAsChar ( size_t  index) const
pure virtualinherited

◆ getAlphabetStateAsInt()

virtual int bpp::BranchModelInterface::getAlphabetStateAsInt ( size_t  index) const
pure virtualinherited

◆ getAlphabetStates()

virtual const std::vector<int>& bpp::BranchModelInterface::getAlphabetStates ( ) const
pure virtualinherited

◆ getd2Pij_dt2()

◆ getdPij_dt()

◆ getFrequencies()

◆ getFrequencies_()

◆ getInitValue()

virtual double bpp::BranchModelInterface::getInitValue ( size_t  i,
int  state 
) const
pure virtualinherited

This method is used to initialize likelihoods in recursions. 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();

Implemented in bpp::TransitionFromTransitionModel, bpp::RE08, bpp::OneChangeTransitionModel, bpp::OneChangeRegisterTransitionModel, bpp::MultinomialFromTransitionModel, bpp::MarkovModulatedSubstitutionModel, bpp::InMixedSubstitutionModel, bpp::AbstractTotallyWrappedTransitionModel, and bpp::AbstractTransitionModel.

Referenced by bpp::AbstractTotallyWrappedTransitionModel::getInitValue(), bpp::InMixedSubstitutionModel::getInitValue(), bpp::MultinomialFromTransitionModel::getInitValue(), bpp::OneChangeRegisterTransitionModel::getInitValue(), bpp::OneChangeTransitionModel::getInitValue(), and bpp::TransitionFromTransitionModel::getInitValue().

◆ getModelStates() [1/2]

virtual std::vector<size_t> bpp::BranchModelInterface::getModelStates ( const std::string &  code) const
pure virtualinherited

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.

Implemented in bpp::RegisterRatesSubstitutionModel, bpp::MarkovModulatedSubstitutionModel, bpp::AbstractWrappedModel, and bpp::AbstractTransitionModel.

◆ getModelStates() [2/2]

virtual std::vector<size_t> bpp::BranchModelInterface::getModelStates ( int  code) const
pure virtualinherited

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.

Implemented in bpp::RegisterRatesSubstitutionModel, bpp::MarkovModulatedSubstitutionModel, bpp::AbstractWrappedModel, and bpp::AbstractTransitionModel.

Referenced by bpp::SubstitutionModelSet::getModelStates(), and bpp::AbstractWrappedModel::getModelStates().

◆ getName()

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

Get the name of the model.

Returns
The name of this model.

Implemented in bpp::WordSubstitutionModel, bpp::TS98, bpp::TransitionFromTransitionModel, bpp::RegisterRatesSubstitutionModel, bpp::RE08, bpp::WAG01, bpp::UserProteinSubstitutionModel, bpp::LLG08_UL3, bpp::LLG08_UL3::EmbeddedModel, bpp::LLG08_UL2, bpp::LLG08_UL2::EmbeddedModel, bpp::LLG08_EX3, bpp::LLG08_EX3::EmbeddedModel, bpp::LLG08_EX2, bpp::LLG08_EX2::EmbeddedModel, bpp::LLG08_EHO, bpp::LLG08_EHO::EmbeddedModel, bpp::LGL08_CAT, bpp::LGL08_CAT::EmbeddedModel, bpp::LG08, bpp::JTT92, bpp::JCprot, bpp::DSO78, bpp::Coala, bpp::POMO, bpp::OneChangeTransitionModel, bpp::OneChangeRegisterTransitionModel, bpp::YpR_Gen, bpp::YpR_Sym, bpp::TN93, bpp::T92, bpp::SSR, bpp::RN95s, bpp::RN95, bpp::L95, bpp::K80, bpp::JCnuc, bpp::GTR, bpp::gBGC, bpp::F81, bpp::MultinomialFromTransitionModel, bpp::MixtureOfTransitionModels, bpp::MixtureOfATransitionModel, bpp::KroneckerWordSubstitutionModel, bpp::InMixedSubstitutionModel, bpp::G2001, bpp::FromMixtureSubstitutionModel, bpp::EquiprobableSubstitutionModel, bpp::D1WalkSubstitutionModel, bpp::YNGP_M9, bpp::YNGP_M8, bpp::YNGP_M7, bpp::YNGP_M3, bpp::YNGP_M2, bpp::YNGP_M10, bpp::YNGP_M1, bpp::YN98, bpp::TripletSubstitutionModel, bpp::SENCA, bpp::RELAX, bpp::MG94, bpp::KroneckerCodonDistanceSubstitutionModel, bpp::KroneckerCodonDistanceFrequenciesSubstitutionModel, bpp::KCM, bpp::GY94, bpp::DFPDistanceFrequenciesSubstitutionModel, bpp::DFP07, bpp::CodonSameAARateSubstitutionModel, bpp::CodonDistancePhaseFrequenciesSubstitutionModel, bpp::CodonDistanceFrequenciesSubstitutionModel, bpp::CodonAdHocSubstitutionModel, bpp::AnonymousSubstitutionModel, bpp::AbstractWrappedModel, bpp::TwoParameterBinarySubstitutionModel, bpp::LG10_EX_EHO, bpp::LG10_EX_EHO::EmbeddedModel, bpp::HKY85, bpp::F84, bpp::CodonDistanceSubstitutionModel, and bpp::BinarySubstitutionModel.

Referenced by bpp::YpR::checkModel(), bpp::TransitionMatrixFromModel::compute(), bpp::AbstractWrappedModel::getName(), bpp::FromMixtureSubstitutionModel::getName(), bpp::AbstractSubstitutionModel::getPij_t(), bpp::BppOSubstitutionModelFormat::initialize_(), bpp::MixtureOfSubstitutionModels::MixtureOfSubstitutionModels(), bpp::MixtureOfATransitionModel::model(), bpp::LegacyPhylogeneticsApplicationTools::setSubstitutionModelParametersInitialValuesWithAliases(), bpp::ModelPath::toString(), and bpp::BppOSubstitutionModelFormat::write().

◆ getNModel()

virtual std::shared_ptr<const TransitionModelInterface> bpp::MixedTransitionModelInterface::getNModel ( size_t  i) const
pure virtual

◆ getNProbability()

virtual double bpp::MixedTransitionModelInterface::getNProbability ( size_t  i) const
pure virtual

◆ getNRate()

virtual double bpp::MixedTransitionModelInterface::getNRate ( size_t  i) const
pure virtual

◆ getNumberOfModels()

virtual size_t bpp::MixedTransitionModelInterface::getNumberOfModels ( ) const
pure virtual

◆ getNumberOfStates()

◆ getPij_t()

◆ getProbabilities()

virtual const std::vector<double>& bpp::MixedTransitionModelInterface::getProbabilities ( ) const
pure virtual

◆ getRate()

◆ getStateMap()

virtual std::shared_ptr<const StateMapInterface> bpp::BranchModelInterface::getStateMap ( ) const
pure virtualinherited

◆ getSubmodelNumbers()

virtual Vuint bpp::MixedTransitionModelInterface::getSubmodelNumbers ( const std::string &  desc) const
pure virtual

Returns the vector of numbers of the submodels in the mixture that match a description.

Implemented in bpp::MixtureOfTransitionModels, bpp::MixtureOfATransitionModel, and bpp::AbstractBiblioMixedTransitionModel.

Referenced by bpp::AbstractBiblioMixedTransitionModel::getSubmodelNumbers().

◆ getVRates()

virtual const std::vector<double>& bpp::MixedTransitionModelInterface::getVRates ( ) const
pure virtual

◆ Lik_t()

virtual const Eigen::VectorXd& bpp::TransitionModelInterface::Lik_t ( const Eigen::VectorXd &  values,
double  t 
) const
pure virtualinherited

This method is used to compute likelihoods in recursions. It computes the probability of a vector given a start state.

Parameters
valuesAn vector of states on the site.
tthe branch length

Implements bpp::BranchModelInterface.

Implemented in bpp::AbstractLkTransitionModel.

◆ model()

virtual const TransitionModelInterface& bpp::MixedTransitionModelInterface::model ( const std::string &  name) const
pure virtual

◆ nModel()

virtual const TransitionModelInterface& bpp::MixedTransitionModelInterface::nModel ( size_t  i) const
pure virtual

◆ nModel_()

virtual TransitionModelInterface& bpp::MixedTransitionModelInterface::nModel_ ( size_t  i)
protectedpure virtual

◆ normalizeVRates()

virtual void bpp::MixedTransitionModelInterface::normalizeVRates ( )
pure virtual

Normalizes the rates of the submodels so that the mean rate of the mixture equals rate_.

Implemented in bpp::AbstractMixedTransitionModel, and bpp::AbstractBiblioMixedTransitionModel.

Referenced by bpp::MixedSubstitutionModelSet::computeHyperNodesProbabilities(), and bpp::AbstractBiblioMixedTransitionModel::normalizeVRates().

◆ Pij_t()

◆ setFreq()

virtual void bpp::TransitionModelInterface::setFreq ( std::map< int, double > &  frequencies)
pure virtualinherited

◆ setFreqFromData()

virtual void bpp::TransitionModelInterface::setFreqFromData ( const SequenceDataInterface data,
double  pseudoCount = 0 
)
pure virtualinherited

◆ setNProbability()

virtual void bpp::MixedTransitionModelInterface::setNProbability ( size_t  i,
double  prob 
)
pure virtual

◆ setRate()

◆ setVRates()

virtual void bpp::MixedTransitionModelInterface::setVRates ( const Vdouble vd)
pure virtual

Sets the rates of the submodels to be proportional to a given vector, and normalizes them so that the mean rate of the mixture equals rate_.

Parameters
vda vector of positive values such that the rates of the respective submodels are in the same proportions (ie this vector does not need to be normalized).

Implemented in bpp::MixtureOfTransitionModels, bpp::AbstractMixedTransitionModel, and bpp::AbstractBiblioMixedTransitionModel.

Referenced by bpp::AbstractBiblioMixedTransitionModel::setVRates().

◆ stateMap()

virtual const StateMapInterface& bpp::BranchModelInterface::stateMap ( ) const
pure virtualinherited

Friends And Related Function Documentation

◆ AbstractBiblioMixedTransitionModel

Definition at line 96 of file MixedTransitionModel.h.

◆ InMixedSubstitutionModel

friend class InMixedSubstitutionModel
friend

Definition at line 97 of file MixedTransitionModel.h.


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