1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
|
/*
* modelmixture.h
*
* Created on: Nov 29, 2014
* Author: minh
*/
#ifndef MODELMIXTURE_H_
#define MODELMIXTURE_H_
#include "phylotree.h"
#include "modelsubst.h"
#include "modelgtr.h"
#include "modelsblock.h"
const char OPEN_BRACKET = '{';
const char CLOSE_BRACKET = '}';
extern const string builtin_mixmodels_definition;
/**
* create a substitution model
* @param model_str model nme
* @param freq_type state frequency type
* @param freq_params frequency parameters
* @param tree associated phylo tree
* @param count_rates TRUE to assign rates counted from alignment, FALSE to not initialize rates
* @return substitution model created
*/
ModelSubst *createModel(string model_str, ModelsBlock *models_block, StateFreqType freq_type, string freq_params,
PhyloTree *tree, bool count_rates = true);
/**
* mixture model
*/
class ModelMixture: public ModelGTR, public vector<ModelGTR*> {
public:
/**
constructor
@param model_name model name, e.g., JC, HKY.
@param freq state frequency type
@param tree associated phylogenetic tree
*/
ModelMixture(string orig_model_name, string model_name, string model_list, ModelsBlock *models_block,
StateFreqType freq, string freq_params, PhyloTree *tree, bool optimize_weights, bool count_rates = true);
void initMixture(string orig_model_name, string model_name, string model_list, ModelsBlock *models_block,
StateFreqType freq, string freq_params, PhyloTree *tree, bool optimize_weights, bool count_rates = true);
/**
constructor
@param tree associated tree for the model
*/
ModelMixture(PhyloTree *tree, bool count_rates = true);
virtual ~ModelMixture();
/**
set checkpoint object
@param checkpoint
*/
virtual void setCheckpoint(Checkpoint *checkpoint);
/**
save object into the checkpoint
*/
virtual void saveCheckpoint();
/**
restore object from the checkpoint
*/
virtual void restoreCheckpoint();
/**
* @return TRUE if this is a mixture model, FALSE otherwise
*/
virtual bool isMixture() { return true; }
/**
* @return the number of mixture model components
*/
virtual int getNMixtures() {return size(); }
/**
* @param cat mixture class
* @return weight of a mixture model component
*/
virtual double getMixtureWeight(int cat) { return prop[cat]; }
/**
@return the number of dimensions
*/
virtual int getNDim();
/**
@return the number of dimensions corresponding to state frequencies
*/
virtual int getNDimFreq();
/**
the target function which needs to be optimized
@param x the input vector x
@return the function value at x
*/
virtual double targetFunk(double x[]);
/**
optimize mixture weights using EM algorithm
@return log-likelihood of optimized weights
*/
double optimizeWeights();
/**
optimize rate parameters using EM algorithm
@param gradient_epsilon
@return log-likelihood of optimized parameters
*/
double optimizeWithEM(double gradient_epsilon);
/**
optimize model parameters
@return the best likelihood
*/
virtual double optimizeParameters(double gradient_epsilon);
/**
* @return TRUE if parameters are at the boundary that may cause numerical unstability
*/
virtual bool isUnstableParameters();
/**
decompose the rate matrix into eigenvalues and eigenvectors
*/
virtual void decomposeRateMatrix();
/**
* setup the bounds for joint optimization with BFGS
*/
virtual void setBounds(double *lower_bound, double *upper_bound, bool *bound_check);
/**
write information
@param out output stream
*/
virtual void writeInfo(ostream &out);
/**
write parameters, used with modeltest
@param out output stream
*/
virtual void writeParameters(ostream &out);
/**
* @return model name
*/
virtual string getName();
/**
* @return model name with parameters in form of e.g. GTR{a,b,c,d,e,f}
*/
virtual string getNameParams();
/**
* compute the memory size for the model, can be large for site-specific models
* @return memory size required in bytes
*/
virtual uint64_t getMemoryRequired() {
uint64_t mem = ModelGTR::getMemoryRequired();
for (iterator it = begin(); it != end(); it++)
mem += (*it)->getMemoryRequired();
return mem;
}
/**
rates of mixture components
*/
// double *mix_rates;
/**
* weight of each sub-model (must sum to 1)
*/
double *prop;
/**
* TRUE to fix model weights
*/
bool fix_prop;
protected:
bool optimizing_submodels;
/**
this function is served for the multi-dimension optimization. It should pack the model parameters
into a vector that is index from 1 (NOTE: not from 0)
@param variables (OUT) vector of variables, indexed from 1
*/
virtual void setVariables(double *variables);
/**
this function is served for the multi-dimension optimization. It should assign the model parameters
from a vector of variables that is index from 1 (NOTE: not from 0)
@param variables vector of variables, indexed from 1
@return TRUE if parameters are changed, FALSE otherwise (2015-10-20)
*/
virtual bool getVariables(double *variables);
};
#endif /* MODELMIXTURE_H_ */
|