-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEdge.C
316 lines (223 loc) · 6.05 KB
/
Edge.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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
/****************************************************************
Edge.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 "Edge.H"
#include <iostream>
#include "Signal.H"
#include "SignalTypeProperties.H"
#include "Propagator.H"
#include "genezilla.H"
Edge::Edge(SignalPtr left,SignalPtr right)
: left(left),
right(right)
{
}
Edge::~Edge()
{
}
SignalPtr Edge::getLeft()
{
return left;
}
SignalPtr Edge::getRight()
{
return right;
}
int Edge::getEdgeBegin()
{
return left->getContextWindowPosition()+left->getContextWindowLength();
}
int Edge::getEdgeEnd()
{
return right->getContextWindowPosition();
}
int Edge::getFeatureBegin()
{
int consensusPos=left->getConsensusPosition();
switch(left->getSignalType())
{
case LEFT_TERMINUS: return 0;
case RIGHT_TERMINUS: return left->getContextWindowPosition();
case ATG: return consensusPos; // exon
case TAG: return consensusPos+3; // UTR or intergenic
case UTR5GT:
case UTR3GT:
case GT: return consensusPos; // intron
case UTR5AG:
case UTR3AG:
case AG: return consensusPos+2; // exon
case TSS: return consensusPos; // UTR
case TES: return consensusPos+left->getConsensusLength(); // intergenic
case NEG_ATG: return consensusPos+3; // UTR or intergenic
case NEG_TAG: return consensusPos; // exon
case NEG_GT: return consensusPos+2; // exon
case NEG_AG: return consensusPos; // intron
case NEG_TSS: return consensusPos+left->getConsensusLength(); // intergenic
case NEG_TES: return consensusPos; // UTR
default: INTERNAL_ERROR;
}
}
int Edge::getFeatureEnd()
{
int consensusPos=right->getConsensusPosition();
switch(right->getSignalType())
{
case LEFT_TERMINUS: return 0;
case RIGHT_TERMINUS: return right->getContextWindowPosition();
case ATG: return consensusPos; // UTR or intergenic
case TAG: return consensusPos+3; // exon
case UTR5GT:
case UTR3GT:
case GT: return consensusPos; // exon
case UTR5AG:
case UTR3AG:
case AG: return consensusPos+2; // intron
case TSS: return consensusPos; // intergenic
case TES: return consensusPos+right->getConsensusLength(); // UTR
case NEG_ATG: return consensusPos+3; // exon
case NEG_TAG: return consensusPos; // UTR or intergenic
case NEG_GT: return consensusPos+2; // intron
case NEG_AG: return consensusPos; // exon
case NEG_TSS: return consensusPos+right->getConsensusLength(); // UTR
case NEG_TES: return consensusPos; // intergenic
default: INTERNAL_ERROR;
}
}
ContentType Edge::getContentType() const
{
return
SignalTypeProperties::global.getContentType(
left->getSignalType(),
right->getSignalType());
}
Strand Edge::getStrand()
{
return ::getStrand(getContentType());
}
bool Edge::isCoding()
{
return ::isCoding(getContentType());
}
bool Edge::isIntron()
{
return ::isIntron(getContentType());
}
bool Edge::isIntergenic()
{
return ::isIntergenic(getContentType());
}
bool Edge::isUTR()
{
return ::isUTR(getContentType());
}
int Edge::propagateForward(int phase)
{
if(isIntergenic()) return (right->getStrand()==FORWARD_STRAND ? 0 : 2);
if(!isCoding()) return phase;
int length=getFeatureEnd()-getFeatureBegin();
switch(getStrand())
{
case FORWARD_STRAND:
return (phase+length)%3;
case REVERSE_STRAND:
return posmod(phase-length);
}
}
int Edge::propagateBackward(int phase)
{
if(isIntergenic()) return (left->getStrand()==FORWARD_STRAND ? 0 : 2);
if(!isCoding()) return phase;
int length=getFeatureEnd()-getFeatureBegin();
switch(getStrand())
{
case FORWARD_STRAND:
return posmod(phase-length);
case REVERSE_STRAND:
return (phase+length)%3;
}
}
void Edge::printOn(ostream &os) const
{
left->printOn(os);os<<" -> ";right->printOn(os);
os<<" ("<<getContentType()<<")";
}
ostream &operator<<(ostream &os,const Edge &edge)
{
edge.printOn(os);
return os;
}
//=================================================================
// PhasedEdge methods
//=================================================================
PhasedEdge::PhasedEdge(double scorePhase0,double scorePhase1,
double scorePhase2,
SignalPtr left,SignalPtr right)
: Edge(left,right)
{
scores[0]=scorePhase0;
scores[1]=scorePhase1;
scores[2]=scorePhase2;
}
double PhasedEdge::getEdgeScore(int phase)
{
return scores[phase];
}
void PhasedEdge::setEdgeScore(int phase,double s)
{
scores[phase]=s;
}
bool PhasedEdge::isPhased() const
{
return true;
}
double PhasedEdge::getInductiveScore(int phase)
{
return scores[phase]+left->posteriorInductiveScore(phase);
}
void PhasedEdge::printOn(ostream &os) const
{
os<<"[";
for(int i=0 ; i<3 ; ++i)
if(!isinf(scores[i])) {
os<<scores[i];
if(i<2 && !isinf(scores[i+1])) os<<',';
}
os<<"] ";
Edge::printOn(os);
}
//=================================================================
// NonPhasedEdge methods
//=================================================================
NonPhasedEdge::NonPhasedEdge(double score,SignalPtr left,SignalPtr right)
: score(score),
Edge(left,right)
{
}
double NonPhasedEdge::getEdgeScore()
{
return score;
}
void NonPhasedEdge::setEdgeScore(double s)
{
score=s;
}
bool NonPhasedEdge::isPhased() const
{
return false;
}
double NonPhasedEdge::getInductiveScore()
{
// Invariant: contentType is INTERGENIC or *_UTR
Strand strand=left->getStrand();
int defaultPhase=(strand==FORWARD_STRAND ? 0 : 2);
return score+left->posteriorInductiveScore(defaultPhase);
}
void NonPhasedEdge::printOn(ostream &os) const
{
//os<<"[0] ";
os<<"["<<score<<"] ";
Edge::printOn(os);
}