]> git.donarmstrong.com Git - mothur.git/blobdiff - globaldata.hpp
modified trim.seqs command
[mothur.git] / globaldata.hpp
index 6d1b3f3c9dd9f2eb73f5abfd23829e63388f7e6e..89089ad8686a20a5ee855a1405d4800729ee325a 100644 (file)
@@ -4,14 +4,10 @@
 #include "mothur.h"
 #include "groupmap.h"
 #include "treemap.h"
-
 #include "rabundvector.hpp"
 #include "sabundvector.hpp"
 #include "listvector.hpp"
 
-
-using namespace std;
-
 class ListVector;
 class SharedListVector;
 class SparseMatrix;
@@ -57,8 +53,6 @@ public:
        string getGroupFile();
        string getOrderFile();
        string getFastaFile();
-       string getNexusFile();
-       string getClustalFile();
        string getTreeFile();
        string getSharedFile();
        string getCutOff();
@@ -91,8 +85,15 @@ public:
        string getSoft();
        string getHard();
        string getScale();
-
-
+       string getStartPos();
+       string getEndPos();
+       string getMaxAmbig();
+       string getMaxHomoPolymer();
+       string getMinLength();
+       string getMaxLength();
+       string getFlip();
+       string getOligosFile();
+       
        void setListFile(string);
        void setGroupFile(string file); 
        void setPhylipFile(string);
@@ -114,7 +115,7 @@ public:
        
        void parseGlobalData(string, string);
        
-       void parseTreeFile();           //parses through tree file to find names of nodes and number of them
+       void parseTreeFile();   //parses through tree file to find names of nodes and number of them
                                                        //this is required in case user has sequences in the names file that are
                                                        //not included in the tree. 
                                                        //only takes names from the first tree in the tree file and assumes that all trees use the same names.
@@ -122,9 +123,7 @@ 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, hard, scale, countends, processors, candidatefile, search, ksize, align, match, size;
-       string mismatch, gapopen, gapextend;
+       string phylipfile, columnfile, listfile, rabundfile, sabundfile, namefile, groupfile, orderfile, fastafile, treefile, sharedfile, line, label, randomtree, groups, cutoff, format, precision, method, fileroot, iters, jumble, freq, calc, abund, step, form, sorted, trump, soft, hard, scale, countends, processors, candidatefile, search, ksize, align, match, size, mismatch, gapopen, gapextend, minLength, maxLength, startPos, endPos, maxAmbig, maxHomoPolymer, flip, oligoFile;
 
 
        static GlobalData* _uniqueInstance;