]> git.donarmstrong.com Git - mothur.git/blobdiff - nameassignment.hpp
fixed classify.seqs output file name - had issue if reference taxonomy file did not...
[mothur.git] / nameassignment.hpp
index e36a76396b96d3221cc77ce60f05b18f3202378e..758a080b9d01ffea80e3b19076a7e0ce8121de0c 100644 (file)
@@ -7,13 +7,18 @@
 class NameAssignment : public map<string,int> {
 public:
        NameAssignment(string);
+       NameAssignment(){};
        void readMap();
        ListVector getListVector();
        int get(string);
-       void print();
+       string get(int);
+       void print(ostream&);
+       void push_back(string);
 private:
        ifstream fileHandle;
        ListVector list;
+       map<int, string> reverse;
+       MothurOut* m;
 };