]> git.donarmstrong.com Git - mothur.git/blobdiff - globaldata.hpp
added alignment code
[mothur.git] / globaldata.hpp
index 40b87583aaa2e472f788b2102f5daea0628c2f9e..cb9aff67dfb4c07918891630c8729b61960451b5 100644 (file)
@@ -23,6 +23,7 @@ class GroupMap;
 class TreeMap;
 class SAbundVector;
 class RAbundVector;
+class SequenceDB;
 
 class GlobalData {
 public:
@@ -39,6 +40,7 @@ public:
        GroupMap* gGroupmap;
        FullMatrix* gMatrix;
        TreeMap* gTreemap;
+       SequenceDB* gSequenceDB;
        string inputFileName, helpRequest, commandName, vertical;
        bool allLines;
        vector<string>  Estimators, Groups; //holds estimators to be used
@@ -73,7 +75,16 @@ public:
        string getStep();
        string getForm();
        string getSorted();
-
+       string getEnds();
+       string getProcessors();
+       string getTemplateFile();
+       string getSearch();
+       string getKSize();
+       string getAlign();
+       string getMatch();
+       string getMismatch();
+       string getGapopen();
+       string getGapextend();
        string getTrump();
        string getSoft();
        string getFilter();
@@ -83,15 +94,19 @@ public:
 
 
        void setListFile(string);
+       void setGroupFile(string file); 
        void setPhylipFile(string);
        void setColumnFile(string);
        void setNameFile(string);
        void setRabundFile(string);
        void setSabundFile(string);
+       void setSharedFile(string);
        void setFormat(string);
        void setRandomTree(string);
        void setGroups(string);
        void setCalc(string);
+       void setEnds(string);
+       void setProcessors(string);
 
        void clear(); 
        void clearLabels();
@@ -108,7 +123,8 @@ public:
 private:
 
        string phylipfile, columnfile, listfile, rabundfile, sabundfile, namefile, groupfile, orderfile, fastafile, nexusfile, clustalfile, treefile, sharedfile, line, label, randomtree, groups;
-       string cutoff, format, precision, method, fileroot, iters, jumble, freq, calc, abund, step, form, sorted, trump, soft, filter, scale;
+       string cutoff, format, precision, method, fileroot, iters, jumble, freq, calc, abund, step, form, sorted, trump, soft, filter, scale, ends, processors, templatefile, search, ksize, align, match;
+       string mismatch, gapopen, gapextend;
 
 
        static GlobalData* _uniqueInstance;