]> git.donarmstrong.com Git - mothur.git/blobdiff - sharedordervector.h
modified calculators to use doubles, added numotu and fontsize parameters to heatmap...
[mothur.git] / sharedordervector.h
index d0a714cf98c8d0406fc5ebba751d4fe63d40ac31..3568450d3059e231c310e18e7073b434516f7c07 100644 (file)
@@ -26,6 +26,16 @@ struct individual {
                }
 };
 
+struct individualFloat {
+               string group;
+               int bin;
+               float abundance;
+               bool operator()(const individual& i1, const individual& i2) {
+               return (i1.abundance > i2.abundance);
+               }
+};
+
+
 #include "sabundvector.hpp"
 #include "rabundvector.hpp"
 #include "sharedrabundvector.h"