]> git.donarmstrong.com Git - mothur.git/blob - clearmemorycommand.h
added load.logfile command. changed summary.single output for subsample=t.
[mothur.git] / clearmemorycommand.h
1 #ifndef CLEARMEMORYCOMMAND_H
2 #define CLEARMEMORYCOMMAND_H
3
4 /*
5  *  clearmemorycommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 7/6/11.
9  *  Copyright 2011 Schloss Lab. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14
15 class ClearMemoryCommand : public Command {
16 public:
17         ClearMemoryCommand(string);
18         ClearMemoryCommand(){ abort = true; calledHelp = true; }
19         ~ClearMemoryCommand(){}
20         
21         vector<string> setParameters();
22         string getCommandName()                 { return "clear.memory";                        }
23         string getCommandCategory()             { return "General";     }
24         string getOutputFileNameTag(string, string);
25         string getHelpString(); 
26         string getCitation() { return "http://www.mothur.org/wiki/Clear.memory"; }
27         string getDescription()         { return "remove saved references from memory"; }
28         
29         
30         int execute(); 
31         void help() { m->mothurOut(getHelpString()); }  
32         
33         
34 private:
35         bool abort;
36         vector<string> outputNames;
37 };
38
39 #endif
40