forked from piovanId/Consensus-distance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
154 lines (114 loc) · 4.26 KB
/
main.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
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
// Standard
#include <iostream>
#include <iterator>
#include <map>
#include <vector>
// GBWTGraph
#include <gbwtgraph/gbwtgraph.h>
#include <gbwtgraph/gfa.h>
// GBWT
#include <gbwt/fast_locate.h>
#include <gbwt/gbwt.h>
// Sdsl
#include <sdsl/bit_vectors.hpp>
#include <sdsl/int_vector.hpp>
#include <sdsl/sd_vector.hpp>
// Custom
#include "include/consensus_distance/pruned_graph.h"
#include "include/consensus_distance/paths_prefix_sum_arrays.h"
// test
#include <gtest/gtest.h>
/**
0th graph:
2[1],
----------------------
1th graph:
2[1], 2[1],
----------------------
2th graph:
2[10], 4[1], 6[1], 10[2], 12[1],
2[10], 6[1], 8[5],
2[10], 4[1], 6[1], 8[5],
2[10], 6[1], 10[2], 12[1],
----------------------
3th graph:
2[10], 4[1], 6[1], 10[2], 12[1],
2[10], 6[1], 8[5],
2[10], 4[1], 6[1], 8[5],
----------------------
4th graph:
2[10], 4[1], 6[1], 10[2], 12[1],
2[10], 6[1], 8[5],
2[10], 4[1], 6[1], 8[5],
2[10], 6[1], 10[2], 12[1],
2[10], 4[1], 6[1], 2[10], 6[1], 6[1], 8[5],
2[10], 6[1], 6[1], 10[2], 12[1],
----------------------
5th graph:
2[10], 4[1], 6[1], 10[2], 12[1],
2[10], 6[1], 8[5],
2[10], 4[1], 6[1], 8[5],
2[10], 6[1], 10[2], 12[1],
2[10], 4[1], 6[1], 2[10], 6[1], 6[1], 8[5],
----------------------
*6th graph:
2[10], 5[1], 6[1], 11[2], 12[1],
3[10], 7[1], 9[5],
2[10], 4[1], 6[1], 8[5],
3[10], 6[1], 10[2], 13[1],
2[10], 4[1], 7[1], 2[10], 6[1], 6[1], 8[5],
*/
namespace _test_paths_prefix_sum_arrays {
class PrefixSumArraysTest : public ::testing::Test {
protected:
GBWTGraph* cyclic_graph;
GBWTGraph* acyclic_graph;
PrefixSumArraysTest(): acyclic_graph(nullptr), cyclic_graph(nullptr) {}
~PrefixSumArraysTest() override {
// You can do clean-up work that doesn't throw exceptions here.
}
// If the constructor and destructor are not enough for setting up
// and cleaning up each test, you can define the following methods:
void SetUp() override {
// Code here will be called immediately after the constructor (right
// before each test).
auto gfa_parse = gfa_to_gbwt("/home/andrea/vg/test/graphs/gfa_with_reference.gfa");
//auto gfa_parse = gfa_to_gbwt("/Users/gi-loaner-05/tesi/vg/test/tiny/tiny.gfa");
//auto gfa_parse = gfa_to_gbwt("/Users/gi-loaner-05/tesi/vg/test/graphs/cactus-BRCA2.gfa");
//auto gfa_parse = gfa_to_gbwt("/Users/gi-loaner-05/tesi/vg/test/graphs/gfa_with_reference.gfa");
auto gfa_parse = gfa_to_gbwt("/Users/gi-loaner-05/tesi/vg/test/graphs/gfa_with_reference_cycle.gfa");
}
void TearDown() override {
// Code here will be called immediately after each test (right
// before the destructor).
}
// Class members declared here can be used by all tests in the test suite
// for Foo.
};
}
int main() {
// Choosing the file based on the system
#ifdef __linux__
auto gfa_parse = gfa_to_gbwt("/home/andrea/vg/test/graphs/gfa_with_reference.gfa");
#else
//auto gfa_parse = gfa_to_gbwt("/Users/gi-loaner-05/tesi/vg/test/tiny/tiny.gfa");
//auto gfa_parse = gfa_to_gbwt("/Users/gi-loaner-05/tesi/vg/test/graphs/cactus-BRCA2.gfa");
//auto gfa_parse = gfa_to_gbwt("/Users/gi-loaner-05/tesi/vg/test/graphs/gfa_with_reference.gfa");
auto gfa_parse = gfa_to_gbwt("/Users/gi-loaner-05/tesi/vg/test/graphs/gfa_with_reference_cycle.gfa");
#endif
std::cout << "Hello, Santa Cruz!" << std::endl;
const gbwt::GBWT& index = *(gfa_parse.first);
GBWTGraph graph(*(gfa_parse.first), *(gfa_parse.second));
PathsPrefixSumArrays *prefixSumArrays = new PathsPrefixSumArrays(graph);
gbwt::FastLocate* localfastlocate = new gbwt::FastLocate(*graph.index);
auto posizioninodo18 = prefixSumArrays->get_all_node_positions(12);
auto temp =localfastlocate->decompressSA(12);
auto distances = prefixSumArrays->get_all_nodes_distances_in_path(18, 2, 0);
auto position_in_all_sequences = prefixSumArrays->get_all_node_positions(2);
auto distances_in_graph = prefixSumArrays->get_all_nodes_distances(18,2);
delete prefixSumArrays;
prefixSumArrays = nullptr;
delete distances;
distances = nullptr;
return 0;
}