]> git.donarmstrong.com Git - mothur.git/blobdiff - helpcommand.cpp
test
[mothur.git] / helpcommand.cpp
index 47fb72ad6e561f35b74e210c3a715561dc78a398..948c31760a6ace11e2eba806c46d44e9f89f6719 100644 (file)
 //**********************************************************************************************************************
 
 HelpCommand::HelpCommand(string option){
-
-       
-       if (option != "") { mothurOut("There are no valid parameters for the help() command."); mothurOutEndLine();  }
        
-       validCommands = new CommandFactory();
+       validCommands = CommandFactory::getInstance();
 }
 
 //**********************************************************************************************************************
@@ -30,9 +27,7 @@ int HelpCommand::execute(){
        validCommands->printCommands(cout);
        mothurOut("For more information about a specific command type 'commandName(help)' i.e. 'read.dist(help)'"); mothurOutEndLine();
        
-       delete validCommands;
-       
-       mothurOutEndLine(); mothurOut("For further assistance please refer to the Mothur manual on our wiki at http://schloss.micro.umass.edu/mothur/, or contact Pat Schloss at pschloss@microbio.umass.edu.\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;
 }