]> git.donarmstrong.com Git - mothur.git/blobdiff - sharedutilities.h
started shared utilities, updates to venn and heatmap added tree.groups command
[mothur.git] / sharedutilities.h
diff --git a/sharedutilities.h b/sharedutilities.h
new file mode 100644 (file)
index 0000000..f4e4631
--- /dev/null
@@ -0,0 +1,39 @@
+#ifndef SHAREDUTIL_H
+#define SHAREDUTIL_H
+/*
+ *  sharedutilities.h
+ *  Mothur
+ *
+ *  Created by Sarah Westcott on 4/9/09.
+ *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
+ *
+ */
+
+#include "mothur.h"
+
+class SharedRAbundVector;
+class SharedOrderVector;
+
+/**************************************************************************************************/
+
+class SharedUtil {
+       public:
+               SharedUtil() {};
+               ~SharedUtil() {};
+               
+               void getSharedVectors(vector<string>, vector<SharedRAbundVector*>&, SharedOrderVector*);
+               void setGroups(vector<string>&, vector<string>&, string);  //globaldata->Groups, your tree or group map, mode
+               void setGroups(vector<string>&, vector<string>&, string&, int&, string);  //globaldata->Groups, your tree or group map, allgroups, numGroups, mode
+               void getCombos(vector<string>&, vector<string>, int&); //groupcomb, globaldata->Groups, numcomb
+               void updateGroupIndex(vector<string>&, map<string, int>&); //globaldata->Groups, groupmap->groupIndex
+               
+       private:
+       
+               bool isValidGroup(string, vector<string>);
+};
+
+/**************************************************************************************************/
+
+
+
+#endif
\ No newline at end of file