diff --git a/algo/core/cluster-junctions.cpp b/algo/core/cluster-junctions.cpp index c9410c55e42533441c0260f3401e58f229c901a9..6e64584555d0686e2e500f487f12f5c09327e13a 100644 --- a/algo/core/cluster-junctions.cpp +++ b/algo/core/cluster-junctions.cpp @@ -40,8 +40,6 @@ void comp_matrix::compare(ostream &out, Cost cluster_cost) // DEBUG // out << " DEBUT COMPARE JUNCTION" << endl ; // clock_t start = clock(); - typedef map > mjs ; - Cost compareCost = cluster_cost; out << " Using cost " << compareCost << endl ; @@ -124,8 +122,6 @@ list > comp_matrix::cluster(string forced_edges, int w, ostream // out << " eps: " << epsilon << " / minPts: " << minPts << endl ; - typedef map > mjs ; - map > graph ; //////////////////////// diff --git a/algo/core/germline.cpp b/algo/core/germline.cpp index b276a21379ceaca58f89c59803e61f9d6b45a903..32ae4cee5a704d878c29ce409d30ec139e2a86d6 100644 --- a/algo/core/germline.cpp +++ b/algo/core/germline.cpp @@ -170,8 +170,6 @@ void MultiGermline::add_germline(Germline *germline, string seed) void MultiGermline::build_default_set(string path) { // Should parse 'data/germlines.data' - Germline *germline; - add_germline(new Germline("TRA", 'A', path + "/TRAV.fa", "", path + "/TRAJ.fa", -10, 20), SEED_S13); add_germline(new Germline("TRB", 'B', path + "/TRBV.fa", path + "/TRBD.fa", path + "/TRBJ.fa", 0, 80), SEED_S12); add_germline(new Germline("TRG", 'G', path + "/TRGV.fa", "", path + "/TRGJ.fa", -10, 30), SEED_S10); @@ -185,8 +183,6 @@ void MultiGermline::build_default_set(string path) void MultiGermline::build_incomplete_set(string path) { // Should parse 'data/germlines.data' - Germline *germline; - // VdJa add_germline(new Germline("VdJa", 'a', path + "/TRDV.fa", path + "/TRDD.fa", path + "/TRAJ.fa", -10, 80), SEED_S13);