X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=loadlogfilecommand.h;fp=loadlogfilecommand.h;h=0fd82a86b56a364a0397207580b3954cd43a2ed2;hb=49d2b7459c5027557564b21e9487dadafbbbdc96;hp=0000000000000000000000000000000000000000;hpb=ee8403d4eb5760187d62b42a9cf4272de8fc0ec4;p=mothur.git diff --git a/loadlogfilecommand.h b/loadlogfilecommand.h new file mode 100644 index 0000000..0fd82a8 --- /dev/null +++ b/loadlogfilecommand.h @@ -0,0 +1,45 @@ +#ifndef Mothur_loadlogfilecommand_h +#define Mothur_loadlogfilecommand_h + +// +// loadlogfilecommand.h +// Mothur +// +// Created by Sarah Westcott on 6/13/12. +// Copyright (c) 2012 Schloss Lab. All rights reserved. +// + + +#include "command.hpp" + +/**************************************************************************************************/ + +class LoadLogfileCommand : public Command { +public: + LoadLogfileCommand(string); + LoadLogfileCommand(); + ~LoadLogfileCommand(){} + + vector setParameters(); + string getCommandName() { return "load.logfile"; } + string getCommandCategory() { return "General"; } + string getOutputFileNameTag(string, string) { return ""; } + string getHelpString(); + string getCitation() { return "http://www.mothur.org/wiki/Load.logfile"; } + string getDescription() { return "extracts current files from a logfile"; } + + int execute(); + void help() { m->mothurOut(getHelpString()); } + +private: + bool abort; + string outputDir, logfile; + vector outputNames; +}; + +/**************************************************************************************************/ + + + + +#endif