7 * Created by Sarah Westcott on 1/2/09.
8 * Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
12 /* This class is designed to aid the user in running mothur. */
14 #include "command.hpp"
15 #include "commandfactory.hpp"
17 class HelpCommand : public Command {
24 vector<string> setParameters() { return outputNames; } //dummy, doesn't really do anything
25 string getCommandName() { return "help"; }
26 string getCommandCategory() { return "Hidden"; }
27 string getHelpString() { return "For more information about a specific command type 'commandName(help)' i.e. 'cluster(help)'"; }
28 string getOutputFileNameTag(string, string) { return ""; }
29 string getCitation() { return "no citation"; }
30 string getDescription() { return "help"; }
33 void help() { m->mothurOut(getHelpString()); }
37 CommandFactory* validCommands;
38 vector<string> outputNames;