-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLightGraph.C
456 lines (355 loc) · 9.78 KB
/
LightGraph.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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
/****************************************************************
LightGraph.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 <fstream>
#include <iostream>
#include "LightGraph.H"
#include "BOOM/Time.H"
#include "BOOM/VectorSorter.H"
using namespace std;
using namespace BOOM;
LightGraph::LightGraph(const String &filename)
: leftRegex("left=(\\d+);"), rightRegex("right=(\\d+);"),
edgeIdRegex("edgeID=(\\d+);"), annoRegex("anno=(\\d+);"),
IdRegex("ID=(\\d+);")
{
File f(filename);
load(f);
}
LightGraph::LightGraph(File &f)
: leftRegex("left=(\\d+);"), rightRegex("right=(\\d+);"),
edgeIdRegex("edgeID=(\\d+);"), annoRegex("anno=(\\d+);"),
IdRegex("ID=(\\d+);")
{
load(f);
}
LightGraph::LightGraph(const String &substrate,int substrateLength)
: leftRegex("left=(\\d+);"), rightRegex("right=(\\d+);"),
edgeIdRegex("edgeID=(\\d+);"), annoRegex("anno=(\\d+);"),
IdRegex("ID=(\\d+);"), substrate(substrate),
substrateLength(substrateLength)
{
}
LightGraph::~LightGraph()
{
Vector<LightVertex*>::iterator vCur=vertices.begin(), vEnd=vertices.end();
for(; vCur!=vEnd ; ++vCur) delete *vCur;
Vector<LightEdge*>::iterator eCur=edges.begin(), eEnd=edges.end();
for(; eCur!=eEnd ; ++eCur) delete *eCur;
}
void LightGraph::addVertex(LightVertex *v)
{
vertices.push_back(v);
}
void LightGraph::addEdge(LightEdge *e)
{
//cout<<"ADDING "<<e->getBegin()<<" - "<<e->getEnd()<<" size was "<<edges.size()<<endl;
edges.push_back(e);
}
void LightGraph::sortVertices()
{
LightVertexComparator cmp;
VectorSorter<LightVertex*> sorter(vertices,cmp);
sorter.sortAscendInPlace();
const int N=vertices.size();
for(int i=0 ; i<N ; ++i) vertices[i]->setID(i);
}
void LightGraph::sortEdges()
{
LightEdgeComparator cmp;
VectorSorter<LightEdge*> sorter(edges,cmp);
sorter.sortAscendInPlace();
const int N=edges.size();
for(int i=0 ; i<N ; ++i) edges[i]->setID(i);
}
void LightGraph::sort()
{
sortVertices();
sortEdges();
}
bool LightGraph::save(const String &filename)
{
ofstream os(filename.c_str());
save(os);
}
bool LightGraph::save(ostream &os)
{
os.precision(16);
const String timestamp=getDateAndTime();
const int V=vertices.size(), E=edges.size();
os<<"##gff-version 2\n\
##source-version LightGraph version1.0\n\
##date "<<timestamp<<"\n\
##Type TranscriptGraph\n\
# stats: "<<V<<" vertices, "<<E<<" edges, "<<substrateLength<<" residues\n\
";
for(int i=0 ; i<V ; ++i) {
LightVertex *v=vertices[i];
if(!v) continue;
String vertexType;
if(v->getBegin()<0) vertexType="left_terminus";
else if(v->getBegin()>=substrateLength) vertexType="right_terminus";
else vertexType="vertex";
v->printOn(os,vertexType);
os<<endl;
}
for(int i=0 ; i<E ; ++i) {
LightEdge *edge=edges[i];
if(!edge) continue;
os<<*edge;
}
}
int LightGraph::getNumVertices() const
{
return vertices.size();
}
int LightGraph::getNumEdges() const
{
return edges.size();
}
LightVertex *LightGraph::getVertex(int i)
{
return vertices[i];
}
LightEdge *LightGraph::getEdge(int i)
{
return edges[i];
}
const String &LightGraph::getSubstrate() const
{
return substrate;
}
void LightGraph::printOn(ostream &os)
{
save(os);
}
bool LightGraph::load(File &f)
{
bool seenLeft=false, seenRight=false;
int lastEdgeID=-1;
while(!f.eof()) {
String line=f.getline();
line.trimWhitespace();
BOOM::Vector<BOOM::String> &fields=*line.getFields();
int numFields=fields.size();
bool keep=true;
if(numFields>=8) {
const String recType=fields[1];
if(recType=="stats:") substrateLength=fields[6].asInt();
else {
substrate=fields[0];
if(recType=="vertex" || recType=="left_terminus" ||
recType=="right_terminus") {
if(recType=="left_terminus") {
if(seenLeft) keep=false;
seenLeft=true;
}
else if(recType=="right_terminus") {
if(seenRight) keep=false;
seenRight=true;
}
SignalType sigType=stringToSignalType(fields[2]);
int begin=fields[3].asInt()-1;
int end=fields[4].asInt();
float score=fields[5].asFloat();
char strand=fields[6][0];
if(strand=='-') sigType=reverseComplement(sigType);
int ID=vertices.size();
if(IdRegex.search(line) && IdRegex[1].asInt()!=ID) INTERNAL_ERROR;
LightVertex *v=
keep?
new LightVertex(substrate,sigType,begin,end,score,strand,ID)
: NULL;
if(v) {
if(annoRegex.search(line) && annoRegex[1].asInt())
v->setAnnotated();
bool support=false;
//if(fields.size()>=12) support=fields[11].substring(4).asInt();
v->setSupport(support);
}
vertices.push_back(v);
}
else if(recType=="edge") {
ContentType conType=stringToContentType(fields[2]);
int begin=fields[3].asInt()-1;
int end=fields[4].asInt();
float score=fields[5].asFloat();
char strand=fields[6][0];
if(strand=='-') conType=reverseComplement(conType);
int frame=fields[7]=="." ? 0 : fields[7].asInt();
if(!leftRegex.search(line)) throw "edge is missing left= tag";
int leftID=leftRegex[1].asInt();//fields[8].substring(5).asInt();
if(!rightRegex.search(line)) throw "edge is missing right= tag";
int rightID=rightRegex[1].asInt();//fields[9].substring(6).asInt();
if(!edgeIdRegex.search(line)) throw "edge is missing edgeID= tag";
int edgeID=edgeIdRegex[1].asInt();//fields[10].substring(7).asInt();
bool support=false;
//if(fields.size()>=12) support=fields[11].substring(4).asInt();
LightVertex *left=vertices[leftID], *right=vertices[rightID];
if(!left || !right) { delete &fields; continue; }
if(edgeID!=lastEdgeID) {
LightEdge *edge=
left && right ?
new LightEdge(substrate,conType,left,right,begin,end,
strand,edgeID)
: NULL;
if(edge) edge->setSupport(support);
edges.push_back(edge);
if(left) left->addEdgeOut(edge);
if(right) right->addEdgeIn(edge);
lastEdgeID=edgeID;
}
edges[edges.size()-1]->setScore(frame,score);
}
}
}
delete &fields;
}
}
ostream &operator<<(ostream &os,const LightGraph &g)
{
g.printOn(os);
return os;
}
int LightGraph::getLargestEdgeID() const
{
int largest=-1;
for(Vector<LightEdge*>::const_iterator cur=edges.begin(), end=edges.end() ;
cur!=end ; ++cur) {
int id=(*cur)->getID();
if(id>largest) largest=id;
}
return largest;
}
void LightGraph::getAnnotatedATGs(Vector<LightVertex*> &ATGs)
{
for(Vector<LightVertex*>::iterator cur=vertices.begin(), end=
vertices.end() ; cur!=end ; ++cur) {
LightVertex *v=*cur;
if(v->getSignalType()==ATG && v->isAnnotated()) ATGs.push_back(v);
}
}
void LightGraph::getATGs(Vector<LightVertex*> &ATGs)
{
for(Vector<LightVertex*>::iterator cur=vertices.begin(), end=
vertices.end() ; cur!=end ; ++cur) {
LightVertex *v=*cur;
if(v->getSignalType()==ATG) ATGs.push_back(v);
}
}
void LightGraph::deleteVertex(int index)
{
delete vertices[index];
vertices.cut(index);
}
void LightGraph::deleteEdge(int index)
{
delete edges[index];
edges.cut(index);
}
void LightGraph::dropVertex(int index)
{
vertices[index]=NULL;
}
void LightGraph::dropEdge(int index)
{
edges[index]=NULL;
}
void LightGraph::deleteNullVertices()
{
int n=vertices.size();
for(int i=0 ; i<n ; ++i)
if(vertices[i]==NULL) {
vertices.cut(i);
--i; --n;
}
}
void LightGraph::deleteNullEdges()
{
int n=edges.size();
for(int i=0 ; i<n ; ++i)
if(edges[i]==NULL) {
edges.cut(i);
--i; --n;
}
}
void LightGraph::deleteEdges(Vector<LightEdge*> &edges)
{
for(Vector<LightEdge*>::iterator cur=edges.begin(), end=edges.end() ;
cur!=end ; ++cur) {
LightEdge *edge=*cur;
edge->getLeft()->dropEdgeOut(edge);
edge->getRight()->dropEdgeIn(edge);
edges[edge->getID()]=NULL;
delete edge;
}
}
void LightGraph::deleteIncidentEdges(LightVertex *v)
{
deleteEdges(v->getEdgesIn());
deleteEdges(v->getEdgesOut());
}
void LightGraph::deleteDuplicates()
{
sort();
// Delete duplicate vertices
const int numVertices=vertices.size();
for(int i=0 ; i<numVertices ; ++i) {
LightVertex *v=vertices[i]; if(!v) continue;
for(int j=i+1 ; j<numVertices ; ++j) {
LightVertex *w=vertices[j]; if(!w) continue;
if(*v==*w) {
deleteIncidentEdges(w);
vertices[j]=NULL;
delete w;
}
}
}
// Delete duplicate edges
const int numEdges=edges.size();
for(int i=0 ; i<numEdges ; ++i) {
LightEdge *e=edges[i]; if(!e) continue;
for(int j=i+1 ; j<numEdges ; ++j) {
LightEdge *f=edges[j]; if(!f) continue;
if(*e==*f) {
f->getLeft()->dropEdgeOut(f);
f->getRight()->dropEdgeIn(f);
edges[j]=NULL;
delete f;
}
}
}
deleteNullVertices();
deleteNullEdges();
}
LightVertex *LightGraph::vertexExists(const String &substrate,Strand strand,
int begin,int end,SignalType type) const
{
for(Vector<LightVertex*>::const_iterator cur=vertices.begin(), End=
vertices.end() ; cur!=End ; ++cur) {
LightVertex *other=*cur; if(!other) continue;
if(substrate==other->getSubstrate() &&
strand==other->getStrand() &&
begin==other->getBegin() &&
end==other->getEnd() &&
type==other->getType()) return other;
}
return NULL;
}
LightEdge *LightGraph::edgeExists(const String &substrate,Strand strand,
int begin,int end,ContentType type) const
{
for(Vector<LightEdge*>::const_iterator cur=edges.begin(), End=
edges.end() ; cur!=End ; ++cur) {
LightEdge *other=*cur; if(!other) continue;
if(substrate==other->getSubstrate() &&
strand==other->getStrand() &&
begin==other->getBegin() &&
end==other->getEnd() &&
type==other->getType()) return other;
}
return NULL;
}