]> git.donarmstrong.com Git - mothur.git/blobdiff - summarysharedcommand.h
added zscore method to normalize.shared
[mothur.git] / summarysharedcommand.h
index b99e0f037206496f788635fa7d8a6ce21958d56b..077181220a836f6b118f68008996b411f81822fa 100644 (file)
@@ -23,7 +23,12 @@ class SummarySharedCommand : public Command {
 
 public:
        SummarySharedCommand(string);
+       SummarySharedCommand();
        ~SummarySharedCommand();
+       vector<string> getRequiredParameters();
+       vector<string> getValidParameters();
+       vector<string> getRequiredFiles();
+       map<string, vector<string> > getOutputFiles() { return outputTypes; }
        int execute();
        void help();
        
@@ -39,15 +44,16 @@ private:
        InputData* input;
        ValidCalculators* validCalculator;
        
-       bool abort, allLines, mult, all;
+       bool abort, allLines, mult, all, createPhylip;
        set<string> labels; //holds labels to be used
        string label, calc, groups;
        vector<string>  Estimators, Groups, outputNames;
+       map<string, vector<string> > outputTypes;
        vector<SharedRAbundVector*> lookup;
        string format, outputDir;
        int numGroups, processors;
        int process(vector<SharedRAbundVector*>, string, string);
-       int driver(vector<SharedRAbundVector*>, int, int, string, string);
+       int driver(vector<SharedRAbundVector*>, int, int, string, string, vector< vector<seqDist> >&);
 
 };