]> git.donarmstrong.com Git - mothur.git/blobdiff - heatmap.h
started heatmap command
[mothur.git] / heatmap.h
diff --git a/heatmap.h b/heatmap.h
new file mode 100644 (file)
index 0000000..fe79e43
--- /dev/null
+++ b/heatmap.h
@@ -0,0 +1,45 @@
+#ifndef HEATMAP_H
+#define HEATMAP_H
+/*
+ *  heatmap.h
+ *  Mothur
+ *
+ *  Created by Sarah Westcott on 3/25/09.
+ *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
+ *
+ */
+
+using namespace std;
+
+#include "ordervector.hpp"
+#include "sabundvector.hpp"
+#include "sharedsabundvector.h"
+#include "sharedordervector.h"
+#include "datavector.hpp"
+#include "globaldata.hpp"
+
+/***********************************************************************/
+
+class HeatMap {
+       
+       public:
+               HeatMap();
+               ~HeatMap(){};
+       
+               void getPic(OrderVector*);
+               void getPic(SharedOrderVector*);
+
+       private:
+               void getSharedVectors(SharedOrderVector*);
+               void setGroups();
+       
+               GlobalData* globaldata;
+               vector<SharedSAbundVector> lookup;
+               SAbundVector sabund;
+               string format;
+
+                       
+};
+
+#endif
+