X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=fastamap.h;h=e1ff3dff2f9ceab1c663f0646141594fe1d20339;hp=e628aedbc460af82c19fd1b124dec5235b421c2e;hb=d1c97b8c04bb75faca1e76ffad60b37a4d789d3d;hpb=163b300cfd7d4ca4e70c454be20f07b1d8346650 diff --git a/fastamap.h b/fastamap.h index e628aed..e1ff3df 100644 --- a/fastamap.h +++ b/fastamap.h @@ -11,6 +11,7 @@ */ #include "mothur.h" +#include "mothurout.h" /* This class represents the fasta file. It reads a fasta file a populates the internal data structure "data". @@ -21,7 +22,7 @@ a list of the sequences names who have the same sequence and a number of how man class FastaMap { public: - FastaMap() {}; + FastaMap() { m = MothurOut::getInstance(); } ~FastaMap() {}; string getGroupName(string); //pass a sequence name get its group @@ -42,6 +43,7 @@ private: map data; //sequence, groupinfo - condensed representation of file map seqmap; //name, sequence - uncondensed representation of file + MothurOut* m; }; #endif