]> git.donarmstrong.com Git - mothur.git/blobdiff - bootstrapsharedcommand.h
pca command
[mothur.git] / bootstrapsharedcommand.h
index cf68e00b42b3e3eb2db96ae4d7e1bb23b3d22096..53f6a26fd471d395a19d414af75640dc9bb0d62c 100644 (file)
@@ -27,14 +27,19 @@ class BootSharedCommand : public Command {
        
 public:
        BootSharedCommand(string);      
+       BootSharedCommand();
        ~BootSharedCommand();
+       vector<string> getRequiredParameters();
+       vector<string> getValidParameters();
+       vector<string> getRequiredFiles();
+       map<string, vector<string> > getOutputFiles() { return outputTypes; }
        int execute();  
        void help();
        
 private:
-       void createTree(ostream*, Tree*);
+       int createTree(ostream*, Tree*);
        void printSims();
-       void process(SharedOrderVector*);
+       int process(SharedOrderVector*);
        
        
        GlobalData* globaldata;
@@ -55,11 +60,11 @@ private:
        vector<SharedRAbundVector*> lookup;
 
        bool abort, allLines;
-       set<int> lines; //hold lines to be used
        set<string> labels; //holds labels to be used
-       string outputFile, calc, groups, line, label;
+       string outputFile, calc, groups, label, outputDir;
        int numGroups, iters;
-       vector<string>  Estimators, Groups; //holds estimators to be used
+       vector<string>  Estimators, Groups, outputNames; //holds estimators to be used
+       map< string, vector<string> > outputTypes;
 
 };