]> git.donarmstrong.com Git - mothur.git/blobdiff - sequencedb.h
added modify names parameter to set.dir
[mothur.git] / sequencedb.h
index 8c7e649b893339daac20eb8cd1fb9dd0f1833544..8f7640ed3f90f1feb827448120759911d2da8e21 100644 (file)
@@ -37,11 +37,15 @@ public:
        void clear();              //clears data - remeber to loop through and delete the sequences inside or you will have a memory leak
        int size();                //returns datas size
        void print(ostream&);      //loops through data using sequence class print
+       bool sameLength() { return samelength; }
                
 private:
        vector<Sequence> data;
        string readName(ifstream&);
        string readSequence(ifstream&);
+       MothurOut* m;
+       bool samelength;
+       int length;
 
 };