]> git.donarmstrong.com Git - mothur.git/blobdiff - libshuffcommand.h
fixed bug in read.tree updates help and validparameters strings, added ability for...
[mothur.git] / libshuffcommand.h
index b2474c52e4ea1188c042550033f6e27581a6f4a3..950bb00809a6ba0371906269f9c4804b02c9a0fa 100644 (file)
@@ -26,25 +26,26 @@ class LibShuffCommand : public Command {
                int execute();  
        
        private:
-               vector< vector<float> > cValues; // vector of coverage scores, one for each comparison.
-               vector<float> deltaValues; // vector of delta scores, one for each comparison.
+               vector< vector< vector<float> > > cValues; // vector<vector of coverage scores, one for each comparison.> -one for each distance level.
+               vector< vector<float> > deltaValues; // vector< vector of delta scores, one for each comparison.> -one at each distance
                vector<float> sumDelta; //sum of delta scores, one for each comparison.
                vector<float> sumDeltaSig; //number of random  matrixes with that delta value or ??
                vector< vector<float> > rsumDelta; //vector< vector<sumdelta scores for a given comparison> >
                vector<string> groupComb;
+               vector<float> dist;
                
                
                void setGroups();
                int findIndex(float, int);
-               void printCoverageFile(float);
+               void printCoverageFile();
                void printSummaryFile();
 
                GlobalData* globaldata;
                Coverage* coverage;
                FullMatrix* matrix;
-               float cutOff;
+               float cutOff, step;
                int numGroups, numComp, iters;
-               string coverageFile, summaryFile;
+               string coverageFile, summaryFile, form;
                ofstream out, outSum;