]> git.donarmstrong.com Git - mothur.git/blob - nameassignment.hpp
fixed bug in hcluster command
[mothur.git] / nameassignment.hpp
1 #ifndef NAMEASSIGNMENT_HPP
2 #define NAMEASSIGNMENT_HPP
3
4 #include "mothur.h"
5 #include "listvector.hpp"
6
7 class NameAssignment : public map<string,int> {
8 public:
9         NameAssignment(string);
10         NameAssignment(){};
11         void readMap();
12         ListVector getListVector();
13         int get(string);
14         void print();
15         void push_back(string);
16 private:
17         ifstream fileHandle;
18         ListVector list;
19 };
20
21
22
23
24 #endif