]> git.donarmstrong.com Git - mothur.git/blob - helpcommand.cpp
added logfile feature
[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         
17         if (option != "") { mothurOut("There are no valid parameters for the help() command."); mothurOutEndLine();  }
18         
19         validCommands = new CommandFactory();
20 }
21
22 //**********************************************************************************************************************
23
24 HelpCommand::~HelpCommand(){}
25
26 //**********************************************************************************************************************
27
28 int HelpCommand::execute(){
29
30         validCommands->printCommands(cout);
31         mothurOut("For more information about a specific command type 'commandName(help)' i.e. 'read.dist(help)'"); mothurOutEndLine();
32         
33         delete validCommands;
34         
35         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");
36         return 0;
37 }
38
39 //**********************************************************************************************************************/