]> git.donarmstrong.com Git - mothur.git/blobdiff - inputdata.h
changed heatmap and venn command to use vector of sharedrabunds instead of order...
[mothur.git] / inputdata.h
index 6d814c584a6c3abd332034c17bfa3b8616db9c0c..f21daec045d67d9bf710ee6dce5e26ab018e1d51 100644 (file)
@@ -1,12 +1,10 @@
 #ifndef INPUTDATA_H
 #define INPUTDATA_H
 
-#include <iostream>
-#include <iomanip>
-#include <string>
-#include <fstream>
+#include "mothur.h"
 #include "ordervector.hpp"
 #include "sharedlistvector.h"
+#include "sharedordervector.h"
 #include "listvector.hpp"
 
 
@@ -21,7 +19,10 @@ public:
        ListVector* getListVector();
        SharedListVector* getSharedListVector();
        OrderVector* getOrderVector();
+       SharedOrderVector* getSharedOrderVector();
        SAbundVector* getSAbundVector();
+       RAbundVector* getRAbundVector();
+       vector<SharedRAbundVector*> getSharedRAbundVectors();
        
 private:
        string format;
@@ -30,9 +31,11 @@ private:
        ListVector* list;
        SharedListVector* SharedList;
        OrderVector* output;
+       SharedOrderVector* SharedOrder;
        SAbundVector* sabund;
+       RAbundVector* rabund;
        map<string,int> orderMap;
 };
 
 
-#endif
\ No newline at end of file
+#endif