-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathChain.h
986 lines (894 loc) · 28.3 KB
/
Chain.h
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
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
#ifndef CHAIN_H_
#define CHAIN_H_
#include <vector>
#include "Types.h"
#include "Clustering.h"
#include "TupleOps.h"
class CHain {
public:
vector<unsigned int> ch;
vector<bool> link;
int direction;
GenomePos qStart, qEnd, tStart, tEnd;
int main; // If one chain is aligned to several chromosomes, then we need to split this chain. main refers to the index of the main alignment in vector chain.
int chromIndex;
float value;
int NumOfAnchors0;
CHain () {
qStart = 0;
qEnd = 0;
tStart = 0;
tEnd = 0;
direction = 0;
main = -1;
value = 0;
NumOfAnchors0 = 0;
};
~CHain() {};
CHain (vector<unsigned int> &onechain) {
ch = onechain;
main = -1;
}
CHain (GenomePos &qS, GenomePos &qE, GenomePos &tS, GenomePos &tE, vector<unsigned int> &onechain,
vector<bool> &lk, float &val, int &numofanchors) {
qStart = qS;
qEnd = qE;
tStart = tS;
tEnd = tE;
ch = onechain;
main = -1;
link = lk;
value = val;
NumOfAnchors0 = numofanchors;
}
int OverlapsOnQ (GenomePos &qS, GenomePos &qE, float rate);
int OverlapsOnT (GenomePos &tS, GenomePos &tE, float rate);
};
int CHain::OverlapsOnQ (GenomePos &qS, GenomePos &qE, float rate) {
int ovp = 0;
if (qS >= qStart and qS < qEnd) {
ovp = min(qE, qEnd) - qS;
}
else if (qE > qStart and qE <= qEnd) {
ovp = qE - max(qS, qStart);
}
else if (qS < qStart and qE > qEnd) {
ovp = qEnd - qStart;
}
float denomA = qEnd - qStart;
//float denomB = qE - qS;
if (ovp/denomA >= rate) {return true;}
//if (max(ovp/denomA, ovp/denomB) >= rate) {return true;}
else {return false;}
}
int CHain::OverlapsOnT (GenomePos &tS, GenomePos &tE, float rate) {
int ovp = 0;
if (tS >= tStart and tS < tEnd) {
ovp = min(tE, tEnd) - tS;
}
else if (tE > tStart and tE <= tEnd) {
ovp = tE - max(tS, tStart);
}
else if (tS < tStart and tE > tEnd) {
ovp = tEnd - tStart;
}
float denomA = tEnd - tStart;
//float denomB = qE - qS;
if (ovp/denomA <= rate) {return true;}
//if (max(ovp/denomA, ovp/denomB) >= rate) {return true;}
else {return false;}
}
class Primary_chain {
public:
vector<CHain> chains;
Primary_chain () {};
~Primary_chain () {};
Primary_chain (CHain chain) {
chains.push_back(chain);
}
};
class FinalChain {
public:
vector<Cluster_SameDiag *> * ExtendClusters;
vector<unsigned int> chain;
vector<int> ClusterIndex; // ClusterIndex[i] stores the index of the Cluster that anchor i comes from;
vector<bool> link;
float SecondSDPValue;
// vector<unsigned int> MatchStart;
// vector<int> StartIndex; // StartIndex[i] stores the index of the start for Cluster inputchain[i];
FinalChain() {}
FinalChain (vector<Cluster_SameDiag *> * c) : ExtendClusters(c) {}
~FinalChain() {};
void Initialize(vector<unsigned int> &ch, vector<Fragment_Info> &Value) {
chain.resize(ch.size());
ClusterIndex.resize(ch.size());
for (int i = 0; i < ch.size(); i++) {
ClusterIndex[i] = Value[ch[i]].clusterNum;
assert((*ExtendClusters)[ClusterIndex[i]]->matchStart != -1);
chain[i] = ch[i] - (*ExtendClusters)[ClusterIndex[i]]->matchStart;
}
}
int size () {
return chain.size();
}
void clear() {
chain.clear();
ClusterIndex.clear();
}
int ClusterNum (int i) {
return ClusterIndex[i];
}
bool strand (int i) {
assert(ClusterIndex[i] < ExtendClusters->size());
return (*ExtendClusters)[ClusterIndex[i]]->strand;
}
// void resize(int m) {
// chain.resize(m);
// ClusterIndex.resize(m);
// }
GenomePos qStart(int i) {
int clusterNum = ClusterIndex[i];
assert(chain[i] < (*ExtendClusters)[clusterNum]->size());
return (*ExtendClusters)[clusterNum]->GetqStart(chain[i]);
}
GenomePos tStart(int i) {
int clusterNum = ClusterIndex[i];
assert(chain[i] < (*ExtendClusters)[clusterNum]->size());
return (*ExtendClusters)[clusterNum]->GettStart(chain[i]);
}
GenomePos qEnd(int i) {
int clusterNum = ClusterIndex[i];
assert(chain[i] < (*ExtendClusters)[clusterNum]->size());
return (*ExtendClusters)[clusterNum]->GetqEnd(chain[i]);
}
GenomePos tEnd(int i) {
int clusterNum = ClusterIndex[i];
assert(chain[i] < (*ExtendClusters)[clusterNum]->size());
return (*ExtendClusters)[clusterNum]->GettEnd(chain[i]);
}
int length (int i) {
int clusterNum = ClusterIndex[i];
assert(chain[i] < (*ExtendClusters)[clusterNum]->size());
return (*ExtendClusters)[clusterNum]->length(chain[i]);
}
};
class UltimateChain {
public:
vector<Cluster> * clusters;
vector<unsigned int> chain;
vector<bool> link;
vector<int> ClusterIndex; // ClusterIndex[i] stores the index of the Cluster that anchor i comes from;
float SecondSDPValue;
float FirstSDPValue;
int NumOfAnchors0;
int NumOfAnchors1;
GenomePos QStart, QEnd, TStart, TEnd;
UltimateChain() {}
UltimateChain(vector<Cluster> * c, float &s) : clusters(c), SecondSDPValue(s) {}
UltimateChain(vector<Cluster> * cl): clusters(cl) {}
~UltimateChain() {};
bool strand (int i) {
assert(ClusterIndex[i] < clusters->size());
return (*clusters)[ClusterIndex[i]].strand;
}
int ClusterNum (int i) {
return ClusterIndex[i];
}
int size () {
return chain.size();
}
void clear() {
chain.clear();
ClusterIndex.clear();
}
GenomePair & operator[](int i) {
int clusterNum = ClusterIndex[i];
assert(chain[i] < (*clusters)[clusterNum].matches.size());
return (*clusters)[clusterNum].matches[chain[i]];
}
int length (int i) {
int clusterNum = ClusterIndex[i];
assert(chain[i] < (*clusters)[clusterNum].matches.size());
return (*clusters)[clusterNum].matchesLengths[chain[i]];
}
int chromIndex(int i) {
int clusterNum = ClusterIndex[i];
return (*clusters)[clusterNum].chromIndex;
}
GenomePos &qStart(int i) {return (*clusters)[ClusterIndex[i]].matches[chain[i]].first.pos;}
GenomePos &tStart(int i) {return (*clusters)[ClusterIndex[i]].matches[chain[i]].second.pos;}
GenomePos qEnd(int i) {return (*clusters)[ClusterIndex[i]].matches[chain[i]].first.pos + (*clusters)[ClusterIndex[i]].matchesLengths[chain[i]];}
GenomePos tEnd(int i) {return (*clusters)[ClusterIndex[i]].matches[chain[i]].second.pos + (*clusters)[ClusterIndex[i]].matchesLengths[chain[i]];}
// GenomePos trans_qStart(int i, int length) {
// if (strand(i) == 0) {return qStart(i);}
// else {return length - qEnd(i);}
// }
// GenomePos trans_qEnd(int i, int length) {
// if (strand(i) == 0) {return qEnd(i);}
// else {return length - qStart(i);}
// }
// GenomePos trans_tStart(int i, GenomePos offset) { return tStart(i) - offset;}
// GenomePos trans_tEnd(int i, GenomePos offset) { return tEnd(i) - offset;}
bool OverlapsOnT (GenomePos tS, GenomePos tE, float rate);
void CleanSpuriousJumpingAnchors ();
void DebugCheck(int readLen, Genome &genome);
long diag(int i) {
if (strand(i) == 1) { return (long) qEnd(i) + (long) tStart(i);}
else { return (long) tStart(i) - (long) qStart(i);}
}
void Initialize(vector<unsigned int> &ch, vector<Fragment_Info> &Value, vector<bool> &lk) {
chain.resize(ch.size());
link = lk;
ClusterIndex.resize(ch.size());
for (int i = 0; i < ch.size(); i++) {
ClusterIndex[i] = Value[ch[i]].clusterNum;
assert((*clusters)[ClusterIndex[i]].matchStart != -1);
chain[i] = ch[i] - (*clusters)[ClusterIndex[i]].matchStart;
}
}
};
bool UltimateChain::OverlapsOnT (GenomePos tS, GenomePos tE, float rate) {
int ovp = 0;
if (tS >= TStart and tS < TEnd) {
ovp = min(tE, TEnd) - tS;
}
else if (tE > TStart and tE <= TEnd) {
ovp = tE - max(tS, TStart);
}
else if (tS < TStart and tE > TEnd) {
ovp = TEnd - TStart;
}
float denomA = TEnd - TStart;
if (ovp/denomA <= rate) {return true;}
else {return false;}
}
void UltimateChain::CleanSpuriousJumpingAnchors () {
//
// Clean spurious anchors jumping far
//
vector<bool> remove(chain.size(), 0);
int im = 0, cur = 0, prev = 0;
int jump = -1; GenomePos jump_tpos;
while (im < chain.size() - 1) {
cur = im + 1; prev = im;
if (jump == -1) {
if (strand(cur) == strand(prev)) {
if (strand(cur) == 0) {
if (tEnd(cur) > tStart(prev)) {jump = cur; jump_tpos = tStart(prev);}
}
else {
if (tStart(cur) < tEnd(prev)) {jump = cur; jump_tpos = tEnd(prev);}
}
}
}
else {
if (strand(cur) == 0) {
if (tEnd(cur) <= jump_tpos and cur - jump <= 3) {
for (int i = jump; i < cur; i++) {remove[i] = 1;}
jump = -1;
}
}
else {
if (tStart(cur) >= jump_tpos and cur - jump <= 3) {
for (int i = jump; i < cur; i++) {remove[i] = 1;}
jump = -1;
}
}
}
im++;
}
if (jump != -1 and cur - jump <= 3) {
for (int i = jump; i <= cur; i++) {remove[i] = 1;}
}
int c = 0;
for (int i = 0; i < remove.size(); i++) {
if (!remove[i]) {
chain[c] = chain[i];
ClusterIndex[c] = ClusterIndex[i];
if (c > 1) {link[c - 1] = link[i - 1];}
c++;
}
}
chain.resize(c);
ClusterIndex.resize(c);
link.resize(c-1);
return;
}
void UltimateChain::DebugCheck(int readLen, Genome &genome) {
for (int u = 0; u < chain.size(); u++) {
assert(qEnd(u) < readLen);
assert(tEnd(u) < genome.lengths[chromIndex(u)]);
}
}
class SplitChain {
public:
vector<int> sptc;
vector<bool> link;
GenomePos QStart, QEnd, TStart, TEnd;
int chromIndex;
GenomePos chromOffset;
UltimateChain *chain;
bool Strand;
int clusterIndex; // for one refined_clusters
vector<int> ClusterIndex; // one splitchain can correspond to multiple ext_clusters
char type; // N: unknown; I: inv; T: tra
SplitChain() {
Strand = 0;
type = 'N';
}
~SplitChain() {}
SplitChain (vector<int> &sp, vector<bool> &lk) {
sptc = sp;
link = lk;
Strand = 0;
type = 'N';
}
SplitChain (vector<int> &sp, vector<bool> &lk, UltimateChain *c, bool str) : chain(c) {
sptc = sp;
link = lk;
Strand = str;
type = 'N';
}
// SplitChain (int c) {
// clusterIndex = c;
// }
int size() const {
return sptc.size();
}
int & operator[] (int i) {
return sptc[i];
}
GenomePair & genomepair(int i) {
return (*chain)[sptc[i]];
}
int length(int i) {
return (*chain).length(sptc[i]);
}
int CHROMIndex(Genome & genome) {
if (sptc.size() == 0) return 1;
int firstChromIndex = genome.header.Find(TStart + 1);
int lastChromIndex;
lastChromIndex = genome.header.Find(TEnd);
if (firstChromIndex != lastChromIndex ) {return 1;}
chromIndex = firstChromIndex;
return 0;
}
bool strand (int i) { return chain->strand(sptc[i]);}
GenomePos &qStart(int i) {return chain->qStart(sptc[i]);}
GenomePos &tStart(int i) {return chain->tStart(sptc[i]);}
GenomePos qEnd(int i) {return chain->qEnd(sptc[i]);}
GenomePos tEnd(int i) {return chain->tEnd(sptc[i]);}
// GenomePos trans_qStart(int i) {
// if (strand(i) == 0) {return qStart(i);}
// else {return readlength - qEnd(i);}
// }
// GenomePos trans_qEnd(int i) {
// if (strand(i) == 0) {return qEnd(i);}
// else {return readlength - qStart(i);}
// }
// GenomePos trans_tStart(int i) { return tStart(i) - offset;}
// GenomePos trans_tEnd(int i) { return tEnd(i) - offset;}
//
// Sort first by tStart, then by qStart
//
int operator()(const int &a, const int &b) {
if (tStart(a) != tStart(b)) { return tStart(a) < tStart(b);}
else { return qStart(a) < qStart(b);}
}
int CartesianTargetLowerBound(int b, int e, int query) {
return lower_bound(sptc.begin() - b, sptc.end() - e, query, *this) - sptc.begin();
}
int CartesianTargetUpperBound(int b, int e, int query) {
return upper_bound(sptc.begin() - b, sptc.end() - e, query, *this) - sptc.begin();
}
};
class Merge_SplitChain {
public:
vector<Cluster *> *clusters;
vector<int> merged_clusterIndex;
GenomePos qStart, qEnd, tStart, tEnd;
Merge_SplitChain (vector<int> &m, vector<Cluster *> * c) : merged_clusterIndex(m), clusters(c) {}
void Update_boundary() {
qStart = (*clusters)[merged_clusterIndex[0]]->qStart;
tStart = (*clusters)[merged_clusterIndex[0]]->tStart;
qEnd = (*clusters)[merged_clusterIndex[0]]->qEnd;
tEnd = (*clusters)[merged_clusterIndex[0]]->tEnd;
for (int t = 0; t < merged_clusterIndex.size(); t++) {
qStart = min((*clusters)[merged_clusterIndex[0]]->qStart, qStart);
tStart = min((*clusters)[merged_clusterIndex[0]]->tStart, tStart);
qEnd = max((*clusters)[merged_clusterIndex[0]]->qEnd, qEnd);
tEnd = max((*clusters)[merged_clusterIndex[0]]->tEnd, tEnd);
}
}
};
// //
// // This function removes paired indels in the finalchain after SDP;
// //
// void
// RemovePairedIndels (FinalChain &chain) {
// if (chain.size() < 2) return;
// vector<bool> remove(chain.size(), false); // If remove[i] == true, then remove chain[i]
// vector<int> SV;
// vector<int> SVpos;
// vector<long> SVgenome;
// //int s = 0, e = 0;
// //
// // Store SVs in vector SV; Store the anchor just after the SV[c] in SVpos[c];
// //
// for (int c = 1; c < chain.size(); c++) {
// if (chain.strand(c) == chain.strand(c-1)) {
// if (chain.strand(c) == 0) {
// int Gap = (int)(((long)chain.tStart(c) - (long)chain.qStart(c)) - ((long)chain.tStart(c - 1) - (long)chain.qStart(c - 1)));
// if (abs(Gap) > 30) { //30
// SV.push_back(Gap);
// SVgenome.push_back(chain.tStart(c));
// SVpos.push_back(c);
// }
// }
// else {
// int Gap = (int)((long)(chain.qStart(c) + chain.tStart(c)) - (long)(chain.qStart(c - 1) + chain.tStart(c - 1)));
// if (abs(Gap) > 30) { //30
// SV.push_back(Gap);
// SVgenome.push_back(chain.tStart(c));
// SVpos.push_back(c);
// }
// }
// }
// else {
// SVgenome.push_back(chain.tStart(c));
// SVpos.push_back(c);
// SV.push_back(0);
// }
// }
// for (int c = 1; c < SV.size(); c++) {
// //
// // If two adjacent SVs have different types and similar lengths, then delete anchors in between those two SVs.
// // The last condition is to ensure both SV[c] and SV[c-1] are not zeros.
// //
// int blink = max(abs(SV[c]), abs(SV[c-1]));
// if (sign(SV[c]) != sign(SV[c-1]) and SV[c] != 0 and SV[c-1] != 0 and abs(SV[c] + SV[c-1]) < 50 and SVpos[c] - SVpos[c-1] < 3) {
// if ((sign(SV[c]) == true and abs(SVgenome[c] - SVgenome[c-1]) < max(2*blink, 1000)) // SV[c] is ins
// or (sign(SV[c]) == false and abs(SVgenome[c] - SV[c] - SVgenome[c-1]) < max(2*blink, 1000))) { // SV[c] is del
// //
// // remove anchors from SVpos[c-1] to SV[c];
// //
// for (int i = SVpos[c-1]; i < SVpos[c]; i++) {
// if (chain.length(i) < 100) remove[i] = true; // 200
// }
// }
// }
// else if (sign(SV[c]) != sign(SV[c-1]) and SV[c] != 0 and SV[c-1] != 0
// and ((sign(SV[c]) == true and abs(SVgenome[c] - SVgenome[c-1]) < 500)
// or (sign(SV[c]) == false and abs(SVgenome[c] - SV[c] - SVgenome[c-1]) < 500))) {
// for (int i = SVpos[c-1]; i < SVpos[c]; i++) {
// if (chain.length(i) < 100) remove[i] = true; // 200
// }
// }
// else if (sign(SV[c]) == sign(SV[c-1]) and SV[c] != 0 and SV[c-1] != 0) { // If two gaps of same typeare too close (<600bp)
// if ((sign(SV[c]) == true and abs(SVgenome[c] - SVgenome[c-1]) < max(2*blink, 1000)) // insertion
// or (sign(SV[c]) == false and abs(SVgenome[c] - SV[c] - SVgenome[c-1]) < max(2*blink, 1000))) { //deletion
// //
// // remove anchors from SVpos[c-1] to SV[c];
// //
// for (int i = SVpos[c-1]; i < SVpos[c]; i++) {
// if (chain.length(i) < 100) remove[i] = true;
// }
// }
// }
// }
// int m = 0;
// for (int i = 0; i < chain.size(); i++) {
// if (remove[i] == false) {
// chain.chain[m] = chain.chain[i];
// chain.ClusterIndex[m] = chain.ClusterIndex[i];
// m++;
// }
// }
// chain.resize(m);
// }
//
// This function removes paired indels in the finalchain after SDP;
//
template<typename Tup>
void RemoveSmallPairedIndels (Tup &chain) {
if (chain.size() < 2) return;
vector<bool> remove(chain.size(), false); // If remove[i] == true, then remove chain[i]
vector<int> SV;
vector<int> SVpos;
vector<long> SVgenome;
for (int c = 1; c < chain.size(); c++) {
if (chain.strand(c) == chain.strand(c-1)) {
if (chain.strand(c) == 0) {
int Gap = (int)(((long)chain.tStart(c) - (long)chain.qStart(c)) - ((long)chain.tStart(c - 1) - (long)chain.qStart(c - 1)));
if (abs(Gap) > 5 and abs(Gap) <= 50) {
SV.push_back(Gap);
SVgenome.push_back(chain.tStart(c));
SVpos.push_back(c);
}
}
else {
int Gap = (int)((long)(chain.qEnd(c) + chain.tStart(c)) - (long)(chain.qEnd(c - 1) + chain.tStart(c - 1)));
if (abs(Gap) > 5 and abs(Gap) <= 50) {
SV.push_back(Gap);
SVgenome.push_back(chain.tStart(c));
SVpos.push_back(c);
}
}
}
else {
SVgenome.push_back(chain.tStart(c));
SVpos.push_back(c);
SV.push_back(0);
}
}
//
// Remove the anchors if it is resulting in paired_indels (almost equal length)
//
for (int c = 1; c < SV.size(); c++) {
if (sign(SV[c]) != sign(SV[c-1]) and SV[c] != 0 and SV[c-1] != 0 and abs(SV[c] + SV[c-1]) <= 20 and SVpos[c] - SVpos[c-1] < 3) {
for (int i = SVpos[c-1]; i < SVpos[c]; i++) { if (chain.length(i) <= 50) remove[i] = true;}
}
}
int m = 0;
for (int i = 0; i < chain.size(); i++) {
if (remove[i] == false) {
chain.chain[m] = chain.chain[i];
chain.ClusterIndex[m] = chain.ClusterIndex[i];
if (!chain.link.empty() and m >= 1) {chain.link[m - 1] = chain.link[i - 1];}
m++;
}
}
chain.chain.resize(m);
chain.ClusterIndex.resize(m);
if (!chain.link.empty()) chain.link.resize(m-1);
}
//
// This function removes paired indels in the finalchain after SDP;
//
template<typename Tup>
void RemovePairedIndels (Tup &chain, bool refineEnds=true) {
if (chain.size() < 2) return;
vector<bool> remove(chain.size(), false); // If remove[i] == true, then remove chain[i]
vector<int> SV;
vector<int> SVpos;
vector<long> SVgenome;
//int s = 0, e = 0;
//
// Store SVs in vector SV; Store the anchor just after the SV[c] in SVpos[c];
//
long totalDist=0;
long totDistSq=0;
for (int c = 1; c < chain.size(); c++) {
if (refineEnds) {
long tDist=0, qDist=0;
if (chain.tStart(c) > chain.tEnd(c-1) ) {
tDist=chain.tStart(c) - chain.tEnd(c-1);
}
else {
tDist=chain.tStart(c-1) - chain.tEnd(c);
}
if (chain.qStart(c) > chain.qEnd(c-1)) {
qDist = chain.qStart(c) - chain.tEnd(c-1);
}
else {
qDist = chain.qStart(c-1) - chain.qEnd(c);
}
long dist=min(tDist, qDist);
totDistSq+=dist*dist;
totalDist+=dist;
}
if (chain.strand(c) == chain.strand(c-1)) {
if (chain.strand(c) == 0) {
int Gap = (int)(((long)chain.tStart(c) - (long)chain.qStart(c)) - ((long)chain.tStart(c - 1) - (long)chain.qStart(c - 1)));
if (abs(Gap) > 30) { //30
SV.push_back(Gap);
SVgenome.push_back(chain.tStart(c));
SVpos.push_back(c);
}
}
else {
int Gap = (int)((long)(chain.qEnd(c) + chain.tStart(c)) - (long)(chain.qEnd(c - 1) + chain.tStart(c - 1)));
if (abs(Gap) > 30) { //30
SV.push_back(Gap);
SVgenome.push_back(chain.tStart(c));
SVpos.push_back(c);
}
}
}
else {
SVgenome.push_back(chain.tStart(c));
SVpos.push_back(c);
SV.push_back(0);
}
}
float nDist=chain.size()-1;
float meanDist=totalDist/nDist;
float varDist = totDistSq/float(nDist) - meanDist*meanDist;
float sdDist=sqrt(varDist);
int firstValidDist=-1;
int lastValidDist=-1;
for (int c = 1; c < SV.size(); c++) {
//
// If two adjacent SVs have different types and similar lengths, then delete anchors in between those two SVs.
// The last condition is to ensure both SV[c] and SV[c-1] are not zeros.
//
if (sign(SV[c]) != sign(SV[c-1]) and SV[c] != 0 and SV[c-1] != 0 and abs(SV[c]) >= 300 and abs(SV[c-1]) >= 300 and SVpos[c] - SVpos[c-1] < 3) {
for (int i = SVpos[c-1]; i < SVpos[c]; i++) { if (chain.length(i) < 100) remove[i] = true;}
}
if (sign(SV[c]) != sign(SV[c-1]) and SV[c] != 0 and SV[c-1] != 0 and abs(SV[c] + SV[c-1]) < 100 and SVpos[c] - SVpos[c-1] < 3) {
// remove anchors from SVpos[c-1] to SV[c];
for (int i = SVpos[c-1]; i < SVpos[c]; i++) { if (chain.length(i) < 100) remove[i] = true;}
}
}
if (refineEnds) {
for (int c=1; c < chain.size(); c++) {
long tDist=0, qDist=0;
if (chain.tStart(c) > chain.tEnd(c-1) ) {
tDist=chain.tStart(c) - chain.tEnd(c-1);
}
else {
tDist=chain.tStart(c-1) - chain.tEnd(c);
}
if (chain.qStart(c) > chain.qEnd(c-1)) {
qDist = chain.qStart(c) - chain.tEnd(c-1);
}
else {
qDist = chain.qStart(c-1) - chain.qEnd(c);
}
int dist=min(tDist, qDist);
if (dist < meanDist + 4*sdDist) {
if (firstValidDist == -1 ){
firstValidDist = c-1;
}
lastValidDist=c;
}
}
if (lastValidDist == -1 or firstValidDist == -1) {
// all invalid
for (int i=0; i < chain.size(); i++) { if (chain.length(i) < 100) remove[i] = true;}
}
if (firstValidDist > 0 and firstValidDist < 3) {
// cout << "Trimming start " << firstValidDist << "\t" << chain.size() << endl;
for (int i=0; i < firstValidDist; i++) { if (chain.length(i) < 100) remove[i] = true;}
}
if (lastValidDist+1 <= chain.size() and chain.size() - lastValidDist < 3) {
// cout << " trimming " << lastValidDist << "\t" << chain.size() << endl;
for (int i=lastValidDist+1; i < chain.size(); i++) { if (chain.length(i) < 100) remove[i] = true;}
}
}
int m = 0;
for (int i = 0; i < chain.size(); i++) {
if (remove[i] == false) {
chain.chain[m] = chain.chain[i];
chain.ClusterIndex[m] = chain.ClusterIndex[i];
if (!chain.link.empty() and m >= 1) {chain.link[m - 1] = chain.link[i - 1];}
m++;
}
}
chain.chain.resize(m);
chain.ClusterIndex.resize(m);
if (m > 0) {
if (!chain.link.empty()) chain.link.resize(m-1);
}
// if (chain.chain.size() > 0) {
// if (!chain.link.empty()) chain.link.resize(m-1);
// }
}
//
// This function removes paired indels in the finalchain after SDP;
//
void
RemovePairedIndels (GenomePairs &matches, vector<unsigned int> &chain, vector<int> &lengths) {
if (chain.size() < 2) return;
vector<bool> remove(chain.size(), false); // If remove[i] == true, then remove chain[i]
vector<int> SV;
vector<int> SVpos;
vector<int> SVgenome;
//int s = 0, e = 0;
//
// Store SVs in vector SV; Store the anchor just after the SV[c] in SVpos[c];
//
for (int c = 1; c < chain.size(); c++) {
int Gap = (int)(((long)matches[chain[c]].second.pos - (long)matches[chain[c]].first.pos) -
((long)matches[chain[c-1]].second.pos - (long)matches[chain[c-1]].first.pos));
if (abs(Gap) > 30) {
SV.push_back(Gap);
SVgenome.push_back(matches[chain[c]].second.pos);
SVpos.push_back(c);
}
}
for (int c = 1; c < SV.size(); c++) {
//
// If two adjacent SVs have different types and similar lengths, then delete anchors in between those two SVs.
// The third condition is to ensure both SV[c] and SV[c-1] are not zeros.
//
int blink = max(abs(SV[c]), abs(SV[c-1])) ;
if (sign(SV[c]) != sign(SV[c-1]) and abs(SV[c] + SV[c-1]) < 600 and abs(SV[c]) != 0 and SV[c-1] != 0) {
if ((sign(SV[c]) == true and abs(SVgenome[c] - SVgenome[c-1]) < max(2*blink, 1000)) // SV[c] is ins
or (sign(SV[c]) == false and abs(SVgenome[c] - SV[c] - SVgenome[c-1]) < max(2*blink, 1000))) { // SV[c] is del
//
// remove anchors from SVpos[c-1] to SV[c];
//
for (int i = SVpos[c-1]; i < SVpos[c]; i++) {
if (lengths[chain[i]]<100) remove[i] = true;
}
}
}
else if (sign(SV[c]) != sign(SV[c-1]) and SV[c] != 0 and SV[c-1] != 0
and ((sign(SV[c]) == true and abs(SVgenome[c] - SVgenome[c-1]) < 500)
or (sign(SV[c]) == false and abs(SVgenome[c] - SV[c] - SVgenome[c-1]) < 500))) {
for (int i = SVpos[c-1]; i < SVpos[c]; i++) {
if (lengths[chain[i]]<100) remove[i] = true; // 200
}
}
else if (sign(SV[c]) == sign(SV[c-1]) and SV[c] != 0 and SV[c-1] != 0) {
if ((sign(SV[c]) == true and abs(SVgenome[c] - SVgenome[c-1]) < max(2*blink, 1000)) // insertion
or (sign(SV[c]) == false and abs(SVgenome[c] - SV[c] - SVgenome[c-1]) < max(2*blink, 1000))) { //deletion
//
// remove anchors from SVpos[c-1] to SV[c];
//
for (int i = SVpos[c-1]; i < SVpos[c]; i++) {
if (lengths[chain[i]]<100) remove[i] = true;
}
}
}
}
int m = 0;
for (int i = 0; i < chain.size(); i++) {
if (remove[i] == false) {
chain[m] = chain[i];
m++;
}
}
chain.resize(m);
}
//
// This function removes spurious anchors after SDP;
//
template<typename Tup>
void RemoveSpuriousAnchors(Tup &chain) {
if (chain.size() < 2) return;
vector<bool> remove(chain.size(), false); // If remove[i] == true, then remove chain[i]
vector<int> SV;
vector<int> SVpos;
//
// Store SVs in vector SV; Store the anchor just after the SV[c] in SVpos[c];
//
for (int c = 1; c < chain.size(); c++) {
if (chain.strand(c) == chain.strand(c-1)) {
if (chain.strand(c) == 0) {
int Gap = (int)(((long)chain.tStart(c) - (long)chain.qStart(c)) - ((long)chain.tStart(c - 1) - (long)chain.qStart(c - 1)));
if (abs(Gap) >= 500) {
SV.push_back(Gap);
SVpos.push_back(c);
}
}
else {
int Gap = (int)((long)(chain.qEnd(c) + chain.tStart(c)) - (long)(chain.qEnd(c - 1) + chain.tStart(c - 1)));
if (abs(Gap) >= 500) {
SV.push_back(Gap);
SVpos.push_back(c);
}
}
}
else {
SVpos.push_back(c);
SV.push_back(0);
}
}
for (int c = 1; c < SV.size(); c++) {
if (SV[c] != 0 and SV[c-1] != 0) {
bool _check = 0;
if (SVpos[c] - SVpos[c-1] <= 10) {
for (int bkc = SVpos[c-1]; bkc < SVpos[c]; bkc++) {
if (chain.length(bkc) >= 50) {
_check = 1;
break;
}
}
if (_check == 0) {
for (int i = SVpos[c-1]; i < SVpos[c]; i++) {
if (chain.length(i) < 50) remove[i] = true; // 200
}
}
}
}
}
int m = 0;
for (int i = 0; i < chain.size(); i++) {
if (remove[i] == false) {
chain.chain[m] = chain.chain[i];
chain.ClusterIndex[m] = chain.ClusterIndex[i];
m++;
}
}
chain.chain.resize(m);
chain.ClusterIndex.resize(m);
}
//
// This function removes paired indels in the finalchain after SDP;
//
template<typename Tup>
void RemoveSpuriousJump (Tup &chain) {
if (chain.size() < 2) return;
vector<bool> remove(chain.size(), false); // If remove[i] == true, then remove chain[i]
vector<int> SV;
vector<int> SVpos;
vector<long> SVgenome;
//int s = 0, e = 0;
//
// Store SVs in vector SV; Store the anchor just after the SV[c] in SVpos[c];
//
for (int c = 1; c < chain.size(); c++) {
if (chain.strand(c) == chain.strand(c-1)) {
if (chain.strand(c) == 0) {
int Gap = (int)(((long)chain.tStart(c) - (long)chain.qStart(c)) - ((long)chain.tStart(c - 1) - (long)chain.qStart(c - 1)));
if (abs(Gap) > 100) { //30
SV.push_back(Gap);
SVgenome.push_back(chain.tStart(c));
SVpos.push_back(c);
}
}
else {
int Gap = (int)((long)(chain.qEnd(c) + chain.tStart(c)) - (long)(chain.qEnd(c - 1) + chain.tStart(c - 1)));
if (abs(Gap) > 100) { //30
SV.push_back(Gap);
SVgenome.push_back(chain.tStart(c));
SVpos.push_back(c);
}
}
}
else {
SVgenome.push_back(chain.tStart(c));
SVpos.push_back(c);
SV.push_back(0);
}
}
for (int c = 1; c < SV.size(); c++) {
//
// If two adjacent SVs have different types and similar lengths, then delete anchors in between those two SVs.
// The last condition is to ensure both SV[c] and SV[c-1] are not zeros.
//
int blink = max(abs(SV[c]), abs(SV[c-1]));
if (remove[SVpos[c-1]] == 0 and sign(SV[c]) != sign(SV[c-1]) and SV[c] != 0 and SV[c-1] != 0 and SVpos[c] - SVpos[c-1] == 1) {
// remove anchors from SVpos[c-1] to SV[c];
for (int i = SVpos[c-1]; i < SVpos[c]; i++) { if (chain.length(i) < 50) remove[i] = true;}
}
}
int m = 0;
for (int i = 0; i < chain.size(); i++) {
if (remove[i] == false) {
chain.chain[m] = chain.chain[i];
chain.ClusterIndex[m] = chain.ClusterIndex[i];
if (!chain.link.empty() and m >= 1) {chain.link[m - 1] = chain.link[i - 1];}
m++;
}
}
chain.chain.resize(m);
chain.ClusterIndex.resize(m);
if (!chain.link.empty()) chain.link.resize(m-1);
}
template<typename Tup>
int LargestSplitChain(vector<Tup> &splitchains) {
int maxi = 0;
for (int mi = 1; mi < splitchains.size(); mi++) {
if (splitchains[mi].size() > splitchains[maxi].size()) {
maxi = mi;
}
}
return maxi;
}
template<typename Tup>
int LargestSplitChain_dist(vector<Tup> &splitchains) {
if (splitchains.size() == 0) return 0;
int maxi = 0; int maxi_d = (splitchains[maxi].QEnd > splitchains[maxi].QStart) ? splitchains[maxi].QEnd - splitchains[maxi].QStart : 0;
for (int mi = 1; mi < splitchains.size(); mi++) {
int d = (splitchains[mi].QEnd > splitchains[mi].QStart) ? splitchains[mi].QEnd - splitchains[mi].QStart : 0;
if (d > maxi_d) {
maxi = mi;
maxi_d = d;
}
}
return maxi;
}
#endif