]> ruin.nu Git - germs.git/blobdiff - src/main.cpp
More help output
[germs.git] / src / main.cpp
index 34ac34fbfc54cfa749900b90d337cd3a4b9be66f..abd520f43a29f7a3ec9b4cb7cb8f893895f16cbc 100644 (file)
@@ -12,22 +12,40 @@ using namespace std;
 #include "modelidentifier.h"
 #include "genesorter.h"
 #include "sortaction.h"
-
-typedef pair<ModelIdentifier::Model,double> modelpair;
+#include "genealgorithms.h"
+#include "model.h"
 
 int main(int argc, char** argv){
 
        string ann = "default.ann";
+       Model model(0);
+       bool detectModel = true;
+       bool onlyIdentify = false;
+       bool printPerm = false;
 
+       //Parse command line arguments
        int opt;
-       while ((opt = getopt(argc, argv, "n:h")) != -1) {
+       while ((opt = getopt(argc, argv, "im:n:hp")) != -1) {
                switch (opt) {
+                       case 'm':
+                               model = Model::modelFactory(optarg);
+                               detectModel = false;
+                               break;
                        case 'n':
                                ann = optarg;
                                break;
+                       case 'i':
+                               onlyIdentify = true;
+                               break;
+                       case 'p':
+                               printPerm = true;
+                               break;
                        case 'h':
                                cout << "Usage: " << argv[0] << " [OPTION] [FILE]" << endl
+                                       << endl << "  -m <model> Specifies which model to use for sorting: Whirl, X, Zipper, FatX or Cloud "
                                        << endl << "  -n <ann>   Specifies which artificial neural network to use for identification. '" << ann << "' is used by default"
+                                       << endl << "  -i         Only identify the model, don't try to sort it"
+                                       << endl << "  -p         Print the resulting permutation at each sorting step"
                                        << endl << "  -h         Prints this help message"
                                        << endl << endl
                                        << "With no FILE, or if FILE is '-', stdin will be used"
@@ -40,6 +58,7 @@ int main(int argc, char** argv){
                }
        }
 
+       //Open file, or stdin
        istream* in;
        ifstream file;
        if (optind == argc || *argv[optind] == '-'){
@@ -52,24 +71,51 @@ int main(int argc, char** argv){
                }
                in = &file;
        }
-       //TODO: Parse
+
+       //Parse the gene order permutation
        vector<Gene> g;
        copy(istream_iterator<int>(*in), istream_iterator<int>(),
-                    back_inserter(g));   
+            back_inserter(g));
        GeneOrder go(g.begin(),g.end());
 
-       //TODO: Identify
+       //Identify the model
        ModelIdentifier mi(ann);
-       map<ModelIdentifier::Model,double> scores = mi.identify(go);
-       for (map<ModelIdentifier::Model,double>::iterator m = scores.begin();
-                       m != scores.end(); ++m){
-               cout << "Model: " << m->first << " score: " << m->second << endl;
+       priority_queue<pair<double,Model> > pq = mi.identify(go);
+       if (detectModel){
+               model = pq.top().second;
+       }
+       while (pq.size() > 0){
+               cout << "Model: " << pq.top().second.name() << " score: " << pq.top().first << endl;
+               pq.pop();
        }
+       cout << "Using model: " << model.name() << endl;
+
+       cout << "Distance: " << inversionDistance(go) << endl;
+       //copy(go.begin(), go.end(), ostream_iterator<int>(cout, " "));
+       //cout << endl;
 
-       //TODO: Chose a sorter
+       if (onlyIdentify){
+               return EXIT_SUCCESS;
+       }
+       //Sort
        GeneSorter so;
-       //TODO: Sort
-       GeneSorter::ActionList al = so.sort(go);
-       //TODO: Print result
+       GeneSorter::ActionList al = so.sort(go,model);
+
+       //Print the result
+       double score = 0;
+
+       GeneOrder temp(go);
+       for (GeneSorter::ActionList::iterator sa = al.begin(); sa != al.end(); ++sa){
+               cout << "Action: " << sa->toString() << " model score: " << model.score(*sa,temp) << endl;
+               (*sa)(temp);
+               score += model.score(*sa,temp);
+
+               if (printPerm){
+                       copy(temp.begin(), temp.end(), ostream_iterator<int>(cout, " "));
+                       cout << endl;
+               }
+       }
+       cout << "Avg score: " << score / al.size() << endl;
+
        return EXIT_SUCCESS;
 }