1 #ifndef SYSTEMCOMMAND_H
2 #define SYSTEMCOMMAND_H
8 * Created by Sarah Westcott on 7/8/09.
9 * Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
13 #include "command.hpp"
16 class SystemCommand : public Command {
20 SystemCommand(string);
21 SystemCommand() { setParameters(); abort = true; calledHelp = true; }
24 vector<string> setParameters();
25 string getCommandName() { return "system"; }
26 string getCommandCategory() { return "General"; }
27 string getHelpString();
28 string getOutputPattern(string){ return ""; }
29 string getCitation() { return "http://www.mothur.org/wiki/System"; }
30 string getDescription() { return "execute system commands from within mothur"; }
33 void help() { m->mothurOut(getHelpString()); }
38 vector<string> outputNames;