]> git.donarmstrong.com Git - mothur.git/blobdiff - inputdata.h
fixed bug with getting sharedrabunds for venn, heatmap and tree.shared commands,...
[mothur.git] / inputdata.h
index abb343e98eb02677006af4316fbc10e4693f3a2a..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,7 +31,9 @@ private:
        ListVector* list;
        SharedListVector* SharedList;
        OrderVector* output;
+       SharedOrderVector* SharedOrder;
        SAbundVector* sabund;
+       RAbundVector* rabund;
        map<string,int> orderMap;
 };