]> git.donarmstrong.com Git - mothur.git/blobdiff - helpcommand.cpp
pds - modified strip barcode funcrtion in trimseqscommand
[mothur.git] / helpcommand.cpp
index fc2f291548e07ebc41e03bf121760d23f2c4a16d..608ff3e275a1c7240975b506961d3a7ecf78fa79 100644 (file)
 
 //**********************************************************************************************************************
 
-HelpCommand::HelpCommand(string option){
-
-       
-       if (option != "") { mothurOut("There are no valid parameters for the help() command."); mothurOutEndLine();  }
+HelpCommand::HelpCommand(string option)  {
        
-       validCommands = new CommandFactory();
+       validCommands = CommandFactory::getInstance();
 }
 
 //**********************************************************************************************************************
@@ -28,11 +25,9 @@ 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();
-       
-       delete validCommands;
+       m->mothurOut("For more information about a specific command type 'commandName(help)' i.e. 'read.dist(help)'"); m->mothurOutEndLine();
        
-       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");
+       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");
        return 0;
 }