]> git.donarmstrong.com Git - mothur.git/blobdiff - shared.h
started shared utilities, updates to venn and heatmap added tree.groups command
[mothur.git] / shared.h
index d4086a562ca7047c8142c0c7783a0641c874a4d0..7445b5ad52c0c69d0548e65b8438681e95430ad9 100644 (file)
--- a/shared.h
+++ b/shared.h
  
 using namespace std;
 
-#include <Carbon/Carbon.h>
-#include <iostream>
-#include <fstream>
-#include <iomanip>
-#include <vector>
-#include <string>
-#include <sstream>
-#include <map>
+#include "mothur.h"
 #include "sharedrabundvector.h"
-#include "listvector.hpp"
+#include "sharedlistvector.h"
 #include "globaldata.hpp"
 
 class Shared {
        public:
                Shared();
                ~Shared();
-               void getSharedVectors(int, ListVector*);
+               void getSharedVectors(int, SharedListVector*);
                map<string, SharedRAbundVector*> sharedGroups; //string is groupname, SharedVector* is out info for that group
                
        private:
                GlobalData* globaldata;
-               void parse(int, ListVector*);
+               void parse(int, SharedListVector*);
                vector< map<string, SharedRAbundVector*> > sharedRAbund;  //contains all the info needed to create the .shared file not sure if we will need 
 };
 
-#endif
\ No newline at end of file
+#endif