-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathglobals.cpp
executable file
·21 lines (20 loc) · 1.29 KB
/
globals.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* globals.h: declare the global variables that are used through the whole program. ****************************************************/
#include <map> //
#include <string> //
#include <stddef.h> //
//
#define INF 9999999999
#define MARGIN 0.0000000001
using namespace std;
struct BPINFO
{
string chr;
unsigned long leftp;
unsigned long rightp;
unsigned long leftMax;
unsigned long rightMin;
double score;
string order; // allele transition order, either "12" or "21"
string bpline;// raw bp info line
string ovline;// bp info line overlapping with the above, the smaller interval used as a representative
};