]> git.donarmstrong.com Git - mothur.git/blob - helpcommand.h
added bootstrap.shared command and fixed some bugs with heatmap
[mothur.git] / helpcommand.h
1 #ifndef HELPCOMMAND_H
2 #define HELPCOMMAND_H
3 /*
4  *  helpcommand.h
5  *  Dotur
6  *
7  *  Created by Sarah Westcott on 1/2/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11
12 /* This class is designed to aid the user in running mothur. */
13
14 #include "command.hpp"
15 #include "globaldata.hpp"
16 #include "validcommands.h"
17 #include "validcalculator.h"
18
19
20 class HelpCommand : public Command {
21         
22 public:
23         HelpCommand();
24         ~HelpCommand();
25         int execute();
26 private:
27         GlobalData* globaldata;
28         ValidCommands* validCommands;
29         ValidCalculators* validCalcs;
30         
31 private:
32                 
33 };
34  
35 #endif