]> git.donarmstrong.com Git - mothur.git/blobdiff - hcluster.h
modified calculators to use doubles, added numotu and fontsize parameters to heatmap...
[mothur.git] / hcluster.h
index da7769d8813e656cd5e63fc3ec15b10c210e062b..78406505a1665dfa7eb95e7a8c0733ee0a7e7f5e 100644 (file)
 class RAbundVector;
 class ListVector;
 
-/***********************************************************************/
-struct linkNode {
-       int     links;
-       float dist;
-       
-       linkNode() {};
-       linkNode(int l, float a) : links(l), dist(a) {};
-       ~linkNode() {};
-};
-
 /***********************************************************************/
 class HCluster {
        
@@ -48,8 +38,8 @@ protected:
        void updateMap();
        vector<seqDist> getSeqsFNNN();
        vector<seqDist> getSeqsAN();
-       void combineFile();
-       void processFile();
+       int combineFile();
+       int processFile();
        //seqDist getNextDist(char*, int&, int);
                
        RAbundVector* rabund;
@@ -78,6 +68,7 @@ protected:
        
        vector<seqDist> mergedMin;
        string partialDist;
+       MothurOut* m;
        
        
 };