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
|
/*
* modelcodonparametric.h
*
* Created on: May 29, 2013
* Author: minh
*/
#ifndef MODELCODONPARAMETRIC_H_
#define MODELCODONPARAMETRIC_H_
#include "modelcodon.h"
/**
* parametric codon model (e.g., Goldman-Yang, Muse-Gaut)
*/
class ModelCodonParametric: virtual public ModelCodon {
public:
/**
constructor
@param model_name model name, e.g., GY,YN
@param freq state frequency type
@param tree associated phylogenetic tree
*/
ModelCodonParametric(const char *model_name, string model_params, StateFreqType freq, string freq_params,
PhyloTree *tree, bool count_rates = true);
/**
* destructor
*/
virtual ~ModelCodonParametric();
/**
initialization, called automatically by the constructor, no need to call it
@param model_name model name, e.g., JC, HKY.
@param freq state frequency type
*/
virtual void init(const char *model_name, string model_params, StateFreqType freq, string freq_params);
/**
write information
@param out output stream
*/
virtual void writeInfo(ostream &out);
protected:
/** initialize Muse-Gaut 1994 model */
void initMG94();
/** initialize Goldman-Yang 1994 model (simplified version with 2 parameters omega and kappa */
void initGY94();
};
#endif /* MODELCODONPARAMETRIC_H_ */
|