]> git.donarmstrong.com Git - mothur.git/blobdiff - matrixoutputcommand.h
fix to summary.tax for 1.28.0
[mothur.git] / matrixoutputcommand.h
index dc77bdf067ff194dce8bd2e5fcb8f078a9450dcc..ff05ef70a30736f661379608ecd291e388cf9301 100644 (file)
@@ -73,6 +73,7 @@ public:
        vector<string> setParameters();
        string getCommandName()                 { return "dist.shared";                         }
        string getCommandCategory()             { return "OTU-Based Approaches";        }
+       string getOutputFileNameTag(string, string);
        string getHelpString(); 
        string getCitation() { return "http://www.mothur.org/wiki/Dist.shared"; }
        string getDescription()         { return "generate a distance matrix that describes the dissimilarity among multiple groups"; }
@@ -88,7 +89,7 @@ private:
        };
        vector<linePair> lines;
        
-       void printSims(ostream&, vector< vector<float> >&);
+       void printSims(ostream&, vector< vector<double> >&);
        int process(vector<SharedRAbundVector*>);
        
        vector<Calculator*> matrixCalculators;
@@ -96,12 +97,12 @@ private:
        InputData* input;
        vector<SharedRAbundVector*> lookup;
        string exportFileName, output, sharedfile;
-       int numGroups, processors;
+       int numGroups, processors, iters, subsampleSize;
        ofstream out;
 
-       bool abort, allLines;
+       bool abort, allLines, subsample;
        set<string> labels; //holds labels to be used
-       string outputFile, calc, groups, label, outputDir;
+       string outputFile, calc, groups, label, outputDir, mode;
        vector<string>  Estimators, Groups, outputNames; //holds estimators to be used
        int process(vector<SharedRAbundVector*>, string, string);
        int driver(vector<SharedRAbundVector*>, int, int, vector< vector<seqDist> >&);