forked from ANGSD/angsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
abcSaf.h
56 lines (51 loc) · 1.7 KB
/
abcSaf.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
47
48
49
50
51
52
53
54
55
56
typedef struct{
char *oklist;//<- {0,1,2}, length=numSites, 0 don't keep 1 do keep 2 error
float **pLikes;
int **pBound;
}realRes;
class abcSaf : public abc{
int doSaf;
BGZF *outfileGprobs;
BGZF *outfileSAF;
FILE *outfileSAFIDX;
BGZF *outfileSAFPOS;
int underFlowProtect;
int isSim;
int minInd;
int noTrans;
char *anc;
char *pest;
int doPost;
int tsktsktsk;
int isHap;
double *filipeIndF;
double scoreTol;
int ishap;
int newDim;
int64_t offs[2];
int nnnSites;
size_t sumBand;
char *tmpChr;
void algoJointPost(double **post,int nSites,int nInd,int *keepSites,realRes *r);
void algoGeno(int refId,double **liks,char *major,char *minor,int nsites,int numInds,kstring_t *sfsfile,int underFlowProtect, int *posi,int *keepSites,double *pest);
void algoJoint(double **liks,char *anc,int nsites,int numInds, int *keepSites,realRes *r,int noTrans);
void algoJointHap(double **liks,char *anc,int nsites,int numInds, int *keepSites,realRes *r,int noTrans);
void algoJointMajorMinor(double **liks,int nsites,int numInds, int *keepSites,realRes *r, char *major, char *minor);
void algoJointMajorMinorHap(double **liks,int nsites,int numInds, int *keepSites,realRes *r, char *major, char *minor);
void writeAll();
int mynchr;
public:
static double *prior; //<- outputfile form pest;
static double *lbicoTab; //dim = [2*numInds+1]
static double **myComb2Tab;
//none optional stuff
FILE *outfile;
abcSaf(const char *outfiles,argStruct *arguments,int inputtype);
~abcSaf();
void getOptions(argStruct *arguments);
void run(funkyPars *pars);
void clean(funkyPars *pars);
void print(funkyPars *pars);
void printArg(FILE *argFile);
void changeChr(int refId);
};