-
Notifications
You must be signed in to change notification settings - Fork 1
/
tkf.h
46 lines (37 loc) · 1.08 KB
/
tkf.h
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
#ifndef TKF_INCLUDED
#define TKF_INCLUDED
#include <vector>
#include "trajec.h"
namespace TrajectoryLikelihood {
using namespace std;
struct TKF {
const IndelParams& params;
int verbose;
double mu, lambda, alpha, beta, gamma;
TKF (const IndelParams&, double t, int verbose);
};
struct TKF91 : TKF {
TKF91 (const IndelParams&, double t, int verbose);
vector<vector<double> > chopZoneLikelihoods (int maxLen) const;
};
struct TKF92 : TKF {
double r;
TKF92 (const IndelParams&, double t, int verbose);
vector<vector<double> > chopZoneLikelihoods (int maxLen) const;
};
struct PRANK {
int verbose;
double epsilon, gamma, delta;
static const double maxDelta;
PRANK (const IndelParams&, double t, int verbose);
vector<vector<double> > chopZoneLikelihoods (int maxLen) const;
};
struct RS07 {
int verbose;
double epsilon, delta;
static const double maxDelta;
RS07 (const IndelParams&, double t, int verbose);
vector<vector<double> > chopZoneLikelihoods (int maxLen) const;
};
}
#endif /* TKF_INCLUDED */