forked from sgusev/GERMLINE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WindowsList.cpp
96 lines (77 loc) · 2.3 KB
/
WindowsList.cpp
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// WindowsList.cpp: History of various window sizes used for matching
#include "WindowsList.h"
using namespace std;
void WindowsList::clear()
{
mem_window-= (windows_list.size() * sizeof(WindowInfo));
windows_list.clear();
}
void WindowsList::initialize(unsigned int snps_size)
{
windows_list.reserve((snps_size/MIN_WINDOW_SIZE)+1);
currentWindowPos=-1;
mem_window= sizeof(windows_list);
}
void WindowsList::getNewWindowSize(unsigned int snps_size)
{
unsigned int r;
if (currentWindowPos == -1)
{
r=MIN_WINDOW_SIZE;
windows_list.push_back(WindowInfo(0,r,r));
}
else
{
if ((snps_size - getWindowEnd() ) <= MIN_WINDOW_SIZE)
{
windows_list.push_back(WindowInfo(getWindowEnd(),snps_size ,snps_size -getWindowEnd()));
}
else
{
r=MIN_WINDOW_SIZE;
windows_list.push_back(WindowInfo(getWindowEnd() ,getWindowEnd() +r,r));
}
}
currentWindowPos++;
num_sets++;
mem_window+= sizeof(WindowInfo) ;
}
int WindowsList::updateWindowSize(unsigned int snps_size)
{
if(getWindowEnd() != snps_size)
{
windows_list[currentWindowPos].setEnd(getWindowEnd()+ WINDOW_FACTOR);
windows_list[currentWindowPos].setSize(getWindowSize()+ WINDOW_FACTOR);
return WINDOW_FACTOR;
}
return 0;
}
unsigned int WindowsList::getWindowStart(unsigned int ms)
{ return ((WindowInfo)windows_list[ms]).getStart();}
unsigned int WindowsList::getWindowEnd(unsigned int ms)
{ return ((WindowInfo)windows_list[ms]).getEnd(); }
unsigned int WindowsList::getWindowSize(unsigned int ms)
{ return ((WindowInfo)windows_list[ms]).getSize();}
unsigned int WindowsList::getWindowStart()
{
if(currentWindowPos<0)
return 0;
else
return ((WindowInfo)windows_list[currentWindowPos]).getStart();}
unsigned int WindowsList::getWindowEnd()
{
if(currentWindowPos<0)
return 0;
else
return ((WindowInfo)windows_list[currentWindowPos]).getEnd();}
unsigned int WindowsList::getWindowSize()
{
if(currentWindowPos<0)
return 0;
else
return ((WindowInfo)windows_list[currentWindowPos]).getSize();}
int WindowsList::err_hom(unsigned int ms)
{ return (int) floor(getWindowSize(ms)*MAX_ERR_HOMp/100);}
int WindowsList::err_het(unsigned int ms)
{ return (int) floor(getWindowSize(ms)*MAX_ERR_HETp/100);}
//end WindowsList.cpp