X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=systemcommand.h;fp=systemcommand.h;h=0000000000000000000000000000000000000000;hb=4a877efa127e56e81a21f53cfdbbfd3bfbe8c4ff;hp=6a4b884cba8ee21629219593cf43eae7b4c02447;hpb=a6cf29fa4dac0909c7582cb1094151d34093ee76;p=mothur.git diff --git a/systemcommand.h b/systemcommand.h deleted file mode 100644 index 6a4b884..0000000 --- a/systemcommand.h +++ /dev/null @@ -1,43 +0,0 @@ -#ifndef SYSTEMCOMMAND_H -#define SYSTEMCOMMAND_H - -/* - * systemcommand.h - * Mothur - * - * Created by Sarah Westcott on 7/8/09. - * Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved. - * - */ - -#include "command.hpp" - - -class SystemCommand : public Command { - - public: - - SystemCommand(string); - SystemCommand() { setParameters(); abort = true; calledHelp = true; } - ~SystemCommand(){} - - vector setParameters(); - string getCommandName() { return "system"; } - string getCommandCategory() { return "General"; } - string getHelpString(); - string getCitation() { return "http://www.mothur.org/wiki/System"; } - string getDescription() { return "execute system commands from within mothur"; } - - int execute(); - void help() { m->mothurOut(getHelpString()); } - - private: - string command; - bool abort; - vector outputNames; - - -}; - -#endif -