X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=helpcommand.cpp;h=ba4f53d942b899d4dc02d65c8acc68a63fdd45f7;hb=952a85d59a12e664f5efa6d01681be189e4fff9c;hp=93def59137b8ecadb3e45b26ff3fac35bc976405;hpb=de2dc9fb831f569b823031d0730f5a0d739e8290;p=mothur.git diff --git a/helpcommand.cpp b/helpcommand.cpp index 93def59..ba4f53d 100644 --- a/helpcommand.cpp +++ b/helpcommand.cpp @@ -14,7 +14,7 @@ HelpCommand::HelpCommand(string option){ - if (option != "") { cout << "There are no valid parameters for the help() command." << endl; } + if (option != "") { mothurOut("There are no valid parameters for the help() command."); mothurOutEndLine(); } validCommands = new CommandFactory(); } @@ -28,11 +28,11 @@ HelpCommand::~HelpCommand(){} int HelpCommand::execute(){ validCommands->printCommands(cout); - cout << "For more information about a specific command type 'commandName(help)' i.e. 'read.dist(help)'" << endl; + mothurOut("For more information about a specific command type 'commandName(help)' i.e. 'read.dist(help)'"); mothurOutEndLine(); delete validCommands; - cout << endl << "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 pschloss@umich.edu.\n"); return 0; }