]> git.donarmstrong.com Git - mothur.git/blobdiff - bootstrapsharedcommand.h
removed validcommands and put its checking in commandfactory.
[mothur.git] / bootstrapsharedcommand.h
index 322cd28571d83ea08d080fb6c4098fbff1c67364..4d2ebe39fc3a3283ca2aa6ac844d6e2f5865f9e2 100644 (file)
@@ -12,7 +12,6 @@
  
 #include "command.hpp"
 #include "sharedordervector.h"
-#include "sharedlistvector.h"
 #include "inputdata.h"
 #include "groupmap.h"
 #include "readotu.h"
@@ -26,13 +25,16 @@ class GlobalData;
 class BootSharedCommand : public Command {
        
 public:
-       BootSharedCommand();    
+       BootSharedCommand(string);      
        ~BootSharedCommand();
        int execute();  
+       void help();
        
 private:
        void createTree(ostream*);
        void printSims();
+       void process(SharedOrderVector*);
+       
        
        GlobalData* globaldata;
        SharedUtil* util;
@@ -45,11 +47,15 @@ private:
        map<int, int> index;  //maps row in simMatrix to vector index in the tree       
        InputData* input;
        ValidCalculators* validCalculator;
-       SharedListVector* SharedList;
        SharedOrderVector* order;
        vector<SharedRAbundVector*> lookup;
-       string format, outputFile;
+
+       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;
        int numGroups, iters;
+       vector<string>  Estimators, Groups; //holds estimators to be used
 
 };