]> git.donarmstrong.com Git - mothur.git/blobdiff - treemap.h
made read.tree not require a groupfile, if one is not given all seqs are assumed...
[mothur.git] / treemap.h
index 0824ebf7f7e6cd109db4d3adb344c46d09738b21..d4b506e6fb1d26675937f89f2cc1591e21a98c07 100644 (file)
--- a/treemap.h
+++ b/treemap.h
@@ -25,7 +25,7 @@ class ListVector;
 
 class TreeMap {
 public:
-       TreeMap() {};
+       TreeMap() { m = MothurOut::getInstance(); }
        TreeMap(string);
        ~TreeMap();
        void readMap();
@@ -36,6 +36,7 @@ public:
        bool isValidGroup(string);  //return true if string is a valid group
        void removeSeq(string);  //removes a sequence, this is to accomadate trees that do not contain all the seqs in your groupfile
        string getGroup(string);
+       void addSeq(string, string);
        vector<string> namesOfGroups;
        vector<string> namesOfSeqs;
     map<string,int> seqsPerGroup;      //groupname, number of seqs in that group.
@@ -51,6 +52,7 @@ private:
        map<string, GroupIndex>::iterator it;
        map<string, int>::iterator it2;
        void setNamesOfGroups(string); 
+       MothurOut* m;
        
        
 };