]> git.donarmstrong.com Git - mothur.git/blobdiff - helpcommand.cpp
added design parameter to the indicator command
[mothur.git] / helpcommand.cpp
index e0ef2a3ebdf20de0d8a7e3ede3ad4a5f14857da1..aeb7efc0b77e0ee0a04e5310af8d81c0049e72a7 100644 (file)
@@ -9,14 +9,46 @@
 
 #include "helpcommand.h"
 
+//**********************************************************************************************************************
+vector<string> HelpCommand::getValidParameters(){      
+       try {
+               
+               vector<string> myArray; 
+               return myArray;
+       }
+       catch(exception& e) {
+               m->errorOut(e, "HelpCommand", "getValidParameters");
+               exit(1);
+       }
+}
+//**********************************************************************************************************************
+vector<string> HelpCommand::getRequiredParameters(){   
+       try {
+               vector<string> myArray;
+               return myArray;
+       }
+       catch(exception& e) {
+               m->errorOut(e, "HelpCommand", "getRequiredParameters");
+               exit(1);
+       }
+}
+//**********************************************************************************************************************
+vector<string> HelpCommand::getRequiredFiles(){        
+       try {
+               vector<string> myArray;
+               return myArray;
+       }
+       catch(exception& e) {
+               m->errorOut(e, "HelpCommand", "getRequiredFiles");
+               exit(1);
+       }
+}
 //**********************************************************************************************************************
 
-HelpCommand::HelpCommand(string option){
-
-       
-       if (option != "") { mothurOut("There are no valid parameters for the help() command."); mothurOutEndLine();  }
+HelpCommand::HelpCommand(string option)  {
        
        validCommands = CommandFactory::getInstance();
+       
 }
 
 //**********************************************************************************************************************
@@ -26,11 +58,11 @@ HelpCommand::~HelpCommand(){}
 //**********************************************************************************************************************
 
 int HelpCommand::execute(){
-
        validCommands->printCommands(cout);
-       mothurOut("For more information about a specific command type 'commandName(help)' i.e. 'read.dist(help)'"); mothurOutEndLine();
+       m->mothurOut("For more information about a specific command type 'commandName(help)' i.e. 'read.dist(help)'"); m->mothurOutEndLine();
+       
+       m->mothurOutEndLine(); m->mothurOut("For further assistance please refer to the Mothur manual on our wiki at http://www.mothur.org/wiki, or contact Pat Schloss at mothur.bugs@gmail.com.\n");
        
-       mothurOutEndLine(); mothurOut("For further assistance please refer to the Mothur manual on our wiki at http://www.mothur.org/wiki, or contact Pat Schloss at mothur.bugs@gmail.com.\n");
        return 0;
 }