-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMddTree.C
232 lines (173 loc) · 4.57 KB
/
MddTree.C
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
/**************************************************************
MddTree.C
Copyright (C)2013 William H. Majoros ([email protected]).
This is OPEN SOURCE SOFTWARE governed by the Gnu General Public
License (GPL) version 3, as described at www.opensource.org.
***************************************************************/
#include "MddTree.H"
#include <fstream>
MddTree::MddTree(const MddTree &other,GarbageCollector &gc,bool revcomp)
: SignalSensor(gc,other,revcomp)
{
// copy ctor
if(revcomp)
{
int contextWindowLength=getContextWindowLength();
int consensusLength=getConsensusLength();
root=other.root->reverseComplement(contextWindowLength);
pooledModel=
(other.pooledModel ? other.pooledModel->reverseComplement() : NULL);
}
else
{
root=other.root->clone();
pooledModel=(other.pooledModel ? other.pooledModel->clone() : NULL);
}
}
MddTree::MddTree(TreeNode *root,SignalSensor *pooledModel,
GarbageCollector &gc,Strand strand,SignalType signalType,
double cutoff,int consensusLength,
int consensusOffset,int contextWindowLength)
: root(root),
pooledModel(pooledModel),
SignalSensor(gc)
{
// ctor
setStrand(strand);
setSignalType(signalType);
setSizes(consensusLength,consensusOffset,contextWindowLength);
setCutoff(cutoff);
}
MddTree::MddTree(istream &is,GarbageCollector &gc)
: root(NULL),
pooledModel(NULL),
SignalSensor(gc)
{
// ctor
load(is,gc);
}
MddTree::MddTree(const BOOM::String &filename,GarbageCollector &gc)
: root(NULL),
pooledModel(NULL),
SignalSensor(gc)
{
// ctor
ifstream is(filename.c_str());
if(!is.good())
throw BOOM::String("Error loading file ")+filename+
" in MddTree::MddTree()";
BOOM::String modelType;
is >> modelType;
if(modelType!="MDD")
throw BOOM::String("Attempt to load an object of type ")+modelType
+" into an MDD tree";
load(is,gc);
}
MddTree::~MddTree()
{
// dtor
delete root;
delete pooledModel;
}
bool MddTree::save(const BOOM::String &filename)
{
ofstream os(filename.c_str());
if(!os.good())
throw BOOM::String("Error creating file ")+filename
+" in MddTree::save()";
return save(os);
}
bool MddTree::save(ostream &os)
{
os << "MDD" << endl;
os << getSignalType() << endl;
os << getCutoff() << endl;
os << getContextWindowLength() << '\t'
<< getConsensusOffset() << '\t'
<< getConsensusLength() << endl;
os << getStrand() << endl;
root->save(os);
if(pooledModel)
{
os << 1 << endl;
pooledModel->save(os);
}
else os << 0 << endl;
return true;
}
double MddTree::getLogP(const Sequence &seq,const BOOM::String &str,
int begin)
{
double score;
if(pooledModel)
score=
(root->getLogP(seq,str,begin)+
pooledModel->getLogP(seq,str,begin))
/2;
else
score=root->getLogP(seq,str,begin);
return score;
}
void MddTree::load(istream &is,GarbageCollector &gc)
{
double cutoff;
int contextWindowLength, consensusOffset, consensusLength;
Strand strand;
SignalType signalType;
BOOM::String cutoffStr;
is >> signalType >> cutoffStr >>contextWindowLength >> consensusOffset
>> consensusLength >> strand;
cutoff=cutoffStr.asDouble();
setSignalType(signalType);
setStrand(strand);
setSizes(consensusLength,consensusOffset,contextWindowLength);
setCutoff(cutoff);
if(root) delete root;
root=new TreeNode(is,gc);
int usePooledModel;
is >> usePooledModel;
if(usePooledModel)
pooledModel=SignalSensor::load(is,gc);
}
void MddTree::computeSubmodels(ModelBuilder &builder,ModelType modelType,
SignalType signalType,int consensusOffset,
int consensusLength,int contextWindowLength)
{
setStrand(FORWARD_STRAND);
setSignalType(signalType);
setSizes(consensusLength,consensusOffset,contextWindowLength);
root->computeSubmodels(builder,modelType,signalType,consensusOffset,
consensusLength);
}
void MddTree::describe(ostream &os)
{
/*
os << "MddTree (Maximal Dependence Decomposition):"
<< "\n\tmaximum depth: " << getMaxDepth()
<< "\n\tleaf models: ";
TreeNode *node=root;
while(node->hasPartition()) node=node->getLeftChild();
node->getSubmodel()->describe(os);
*/
}
int MddTree::getMaxDepth()
{
return root->getMaxDepth();
}
SignalSensor *MddTree::reverseComplement()
{
return new MddTree(*this,getGC(),true);
}
SignalSensor *MddTree::clone() const
{
return new MddTree(*this);
}
void MddTree::printOn(ostream &os) const
{
os << *root << endl;
}
ostream &operator<<(ostream &os,MddTree &tree)
{
tree.printOn(os);
return os;
}