1 #ifndef CLEARMEMORYCOMMAND_H
2 #define CLEARMEMORYCOMMAND_H
8 * Created by westcott on 7/6/11.
9 * Copyright 2011 Schloss Lab. All rights reserved.
13 #include "command.hpp"
15 class ClearMemoryCommand : public Command {
17 ClearMemoryCommand(string);
18 ClearMemoryCommand(){ abort = true; calledHelp = true; }
19 ~ClearMemoryCommand(){}
21 vector<string> setParameters();
22 string getCommandName() { return "clear.memory"; }
23 string getCommandCategory() { return "General"; }
24 string getHelpString();
25 string getCitation() { return "http://www.mothur.org/wiki/Clear.memory"; }
26 string getDescription() { return "remove saved references from memory"; }
30 void help() { m->mothurOut(getHelpString()); }
35 vector<string> outputNames;