]> git.donarmstrong.com Git - mothur.git/blobdiff - setdircommand.h
fixes while testing 1.33.0
[mothur.git] / setdircommand.h
index 565b839aadb6ce8f2f440e6bd8b75be44afba227..36753edeb57f8601dd0a1f5309b9c1cf67109429 100644 (file)
@@ -19,14 +19,27 @@ class SetDirectoryCommand : public Command {
        
 public:
        SetDirectoryCommand(string);
-       ~SetDirectoryCommand();
-       int execute();
-       void help();
+       SetDirectoryCommand() { abort = true; calledHelp = true; setParameters(); }
+       ~SetDirectoryCommand(){}
+       
+       vector<string> setParameters();
+       string getCommandName()                 { return "set.dir";             }
+       string getCommandCategory()             { return "General";             }
+       
+       string getHelpString(); 
+    string getOutputPattern(string){ return ""; }      
+       string getCitation() { return "http://www.mothur.org/wiki/Set.dir"; }
+       string getDescription()         { return "set input, output and default directories"; }
+
+       int execute(); 
+       void help() { m->mothurOut(getHelpString()); }  
        
 private:
        CommandFactory* commandFactory;
        string output, input, tempdefault;
-       bool abort;
+       bool abort, debugOnly, modifyNames;
+       vector<string> outputNames;
+       
                
 };