X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=getcurrentcommand.cpp;fp=getcurrentcommand.cpp;h=7bfae208ad9eb6b1a94ba92e2ae028c2f986f24a;hb=ca9ac1d80c62f57270b0dcd49410ebe08a8aecd6;hp=bd7539a25a30a2c972dfa9157a1b25ceb3349c33;hpb=36a867cbd85d9c276d3c8d13f25a150bbbe2466b;p=mothur.git diff --git a/getcurrentcommand.cpp b/getcurrentcommand.cpp index bd7539a..7bfae20 100644 --- a/getcurrentcommand.cpp +++ b/getcurrentcommand.cpp @@ -9,48 +9,46 @@ #include "getcurrentcommand.h" - //********************************************************************************************************************** -vector GetCurrentCommand::getValidParameters(){ +vector GetCurrentCommand::setParameters(){ try { - string Array[] = {"outputdir","inputdir","clear"}; - vector myArray (Array, Array+(sizeof(Array)/sizeof(string))); + CommandParameter pclear("clear", "String", "", "", "", "", "",false,false); parameters.push_back(pclear); + CommandParameter pinputdir("inputdir", "String", "", "", "", "", "",false,false); parameters.push_back(pinputdir); + CommandParameter poutputdir("outputdir", "String", "", "", "", "", "",false,false); parameters.push_back(poutputdir); + + vector myArray; + for (int i = 0; i < parameters.size(); i++) { myArray.push_back(parameters[i].name); } return myArray; } catch(exception& e) { - m->errorOut(e, "GetCurrentCommand", "getValidParameters"); + m->errorOut(e, "GetCurrentCommand", "setParameters"); exit(1); } } //********************************************************************************************************************** -GetCurrentCommand::GetCurrentCommand(){ +string GetCurrentCommand::getHelpString(){ try { - abort = true; calledHelp = true; + string helpString = ""; + helpString += "The get.current command outputs the current files saved by mothur.\n"; + helpString += "The get.current command has one parameter: clear.\n"; + helpString += "The clear paramter is used to indicate which file types you would like to clear values for, multiple types can be separated by dashes.\n"; + helpString += "The get.current command should be in the following format: \n"; + helpString += "get.current() or get.current(clear=fasta-name-accnos)\n"; + return helpString; } catch(exception& e) { - m->errorOut(e, "GetCurrentCommand", "GetCurrentCommand"); + m->errorOut(e, "GetCurrentCommand", "getHelpString"); exit(1); } } //********************************************************************************************************************** -vector GetCurrentCommand::getRequiredParameters(){ +GetCurrentCommand::GetCurrentCommand(){ try { - vector myArray; - return myArray; + abort = true; calledHelp = true; + setParameters(); } catch(exception& e) { - m->errorOut(e, "GetCurrentCommand", "getRequiredParameters"); - exit(1); - } -} -//********************************************************************************************************************** -vector GetCurrentCommand::getRequiredFiles(){ - try { - vector myArray; - return myArray; - } - catch(exception& e) { - m->errorOut(e, "GetCurrentCommand", "getRequiredFiles"); + m->errorOut(e, "GetCurrentCommand", "GetCurrentCommand"); exit(1); } } @@ -63,9 +61,7 @@ GetCurrentCommand::GetCurrentCommand(string option) { if(option == "help") { help(); abort = true; calledHelp = true; } else { - //valid paramters for this command - string Array[] = {"outputdir","inputdir","clear"}; - vector myArray (Array, Array+(sizeof(Array)/sizeof(string))); + vector myArray = setParameters(); OptionParser parser(option); map parameters = parser.getParameters(); @@ -89,25 +85,6 @@ GetCurrentCommand::GetCurrentCommand(string option) { } //********************************************************************************************************************** -void GetCurrentCommand::help(){ - try { - m->mothurOut("The get.current command outputs the current files saved by mothur.\n"); - m->mothurOut("The get.current command has one parameter: clear.\n"); - m->mothurOut("The clear paramter is used to indicate which file types you would like to clear values for, multiple types can be separated by dashes.\n"); - m->mothurOut("The get.current command should be in the following format: \n"); - m->mothurOut("get.current() or get.current(clear=fasta-name-accnos)\n"); - - } - catch(exception& e) { - m->errorOut(e, "GetCurrentCommand", "help"); - exit(1); - } -} - -//********************************************************************************************************************** -GetCurrentCommand::~GetCurrentCommand(){} -//********************************************************************************************************************** - int GetCurrentCommand::execute(){ try {