]> git.donarmstrong.com Git - mothur.git/blob - helpcommand.cpp
working on megastats
[mothur.git] / helpcommand.cpp
1 /*
2  *  helpcommand.cpp
3  *  Dotur
4  *
5  *  Created by Sarah Westcott on 1/2/09.
6  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
7  *
8  */
9
10 #include "helpcommand.h"
11
12 //**********************************************************************************************************************
13
14 HelpCommand::HelpCommand(string option)  {
15         
16         validCommands = CommandFactory::getInstance();
17         
18 }
19
20 //**********************************************************************************************************************
21
22 HelpCommand::~HelpCommand(){}
23
24 //**********************************************************************************************************************
25
26 int HelpCommand::execute(){
27         validCommands->printCommands(cout);
28         m->mothurOut("For more information about a specific command type 'commandName(help)' i.e. 'read.dist(help)'"); m->mothurOutEndLine();
29         
30         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");
31         return 0;
32 }
33
34 //**********************************************************************************************************************/