| 1 | /* |
|---|
| 2 | |
|---|
| 3 | PHYML : a program that computes maximum likelihood phylogenies from |
|---|
| 4 | DNA or AA homologous sequences |
|---|
| 5 | |
|---|
| 6 | Copyright (C) Stephane Guindon. Oct 2003 onward |
|---|
| 7 | |
|---|
| 8 | All parts of the source except where indicated are distributed under |
|---|
| 9 | the GNU public licence. See http://www.opensource.org for details. |
|---|
| 10 | |
|---|
| 11 | */ |
|---|
| 12 | |
|---|
| 13 | #ifndef MODELS_H |
|---|
| 14 | #define MODELS_H |
|---|
| 15 | |
|---|
| 16 | void PMat(double l, model *mod, double ***Pij); |
|---|
| 17 | void PMat_K80(double l,double kappa, double ***Pij); |
|---|
| 18 | void PMat_TN93(double l, model *mod, double ***Pij); |
|---|
| 19 | void PMat_Empirical(double l, model *mod, double ***Pij); |
|---|
| 20 | void dPMat(double l, double rr, model *mod, double ***dPij); |
|---|
| 21 | void d2PMat(double l, double rr, model *mod, double ***d2Pij); |
|---|
| 22 | void dPMat_K80(double l, double ***dPij, double rr, double k); |
|---|
| 23 | void d2PMat_K80(double l, double ***d2Pij, double rr, double k); |
|---|
| 24 | void dPMat_TN93(double l, double ***dPij, model *mod, double rr); |
|---|
| 25 | void d2PMat_TN93(double l, double ***dPij, model *mod, double rr); |
|---|
| 26 | int GetDaa (double *daa, double *pi, char *file_name); |
|---|
| 27 | int Matinv (double *x, int n, int m, double *space); |
|---|
| 28 | void Init_Model(allseq *data, model *mod); |
|---|
| 29 | int Init_Qmat_Dayhoff(double *daa, double *pi); |
|---|
| 30 | int Init_Qmat_JTT(double *daa, double *pi); |
|---|
| 31 | void Update_Qmat_GTR(model *mod); |
|---|
| 32 | void Translate_Custom_Mod_String(model *mod); |
|---|
| 33 | int Init_Qmat_WAG(double *daa, double *pi); |
|---|
| 34 | void Set_Model_Parameters(arbre *tree); |
|---|
| 35 | int Init_Qmat_RtREV(double *daa, double *pi); |
|---|
| 36 | int Init_Qmat_CpREV(double *daa, double *pi); |
|---|
| 37 | int Init_Qmat_VT(double *daa, double *pi); |
|---|
| 38 | int Init_Qmat_Blosum62(double *daa, double *pi); |
|---|
| 39 | int Init_Qmat_MtMam(double *daa, double *pi); |
|---|
| 40 | |
|---|
| 41 | #endif |
|---|