massive code move
[mussa.git] / mussa_nway.hh
1 #ifndef _MUSSA_NWAY_H_
2 #define _MUSSA_NWAY_H_
3 //  This file is part of the Mussa source distribution.
4 //  http://mussa.caltech.edu/
5 //  Contact author: Tristan  De Buysscher, tristan@caltech.edu
6
7 // This program and all associated source code files are Copyright (C) 2005
8 // the California Institute of Technology, Pasadena, CA, 91125 USA.  It is
9 // under the GNU Public License; please see the included LICENSE.txt
10 // file for more information, or contact Tristan directly.
11
12
13 //                        ----------------------------------------
14 //                         ----------  mussa_nway.hh  -----------
15 //                        ----------------------------------------
16
17 #include <list>
18 #include <string>
19 #include <vector>
20
21 #include "flp.hh"
22
23 class Nway_Paths
24 {
25   friend class ConnView;
26   friend class SeqView;
27   private:
28     int species_num;
29     int threshold;
30     int win_size;
31     int soft_thres;
32
33     double ent_thres;
34     std::vector<char *> c_sequences;
35
36     std::list<std::vector<int> > pathz;
37     std::list<std::vector<int> > refined_pathz;
38
39   public:
40     Nway_Paths();
41     void setup(int sp_num, int w, int t);
42     void setup_ent(double new_entropy_thres, std::vector<std::string> some_Seqs);
43     void set_soft_thres(int soft_thres);
44
45     void radiate_path_search(std::vector<std::vector<FLPs> > all_comparisons);
46     void trans_path_search(std::vector<std::vector<FLPs> > all_comparisons);
47     void entropy_path_search(std::vector<std::vector<FLPs> > all_comparisons);
48     double path_entropy(std::vector<int> path);
49
50   // old recursive transitive nway ... has issues checking all links?
51     void find_paths_r(std::vector<std::vector<FLPs> > all_comparisons);
52     void path_search(std::vector<std::vector<FLPs> > all_comparisons, std::vector<int> path, int depth);
53
54     void simple_refine();
55     void save(std::string save_file_path);
56     std::string load(std::string load_file_path);
57     void add_path(std::vector<int> loaded_path);
58     int seq_num();
59
60     void find_paths(std::vector<std::vector<FLPs> > all_comparisons);
61     void refine();
62
63     void save_old(std::string save_file_path);
64     void print();
65 };
66 #endif