X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=sequencedb.h;h=8c7e649b893339daac20eb8cd1fb9dd0f1833544;hb=cd37904452dc95b183ff313ff05720c562902487;hp=88b31e2e5d7adc050c58e3d18cb7ffca7652370b;hpb=0470f6d037aacb3563c3f7010708120a4a67d4e6;p=mothur.git diff --git a/sequencedb.h b/sequencedb.h index 88b31e2..8c7e649 100644 --- a/sequencedb.h +++ b/sequencedb.h @@ -30,16 +30,16 @@ public: int getNumSeqs(); void set(int, string); //unaligned - should also set length - void set(int, Sequence*); //unaligned - should also set length - Sequence* get(int); //returns sequence name at that location - void push_back(Sequence*); //adds unaligned sequence + void set(int, Sequence); //unaligned - should also set length + Sequence get(int); //returns sequence name at that location + void push_back(Sequence); //adds unaligned sequence void resize(int); //resizes data 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 private: - vector data; + vector data; string readName(ifstream&); string readSequence(ifstream&);