X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=getgroupcommand.cpp;h=529ed934d5b194d1a1d82869c44053ca4f7bbaf2;hp=b4d2d74d0cc72d6c7f4db7acbd4202e3ea5b9972;hb=1a20e24ee786195ab0e1cccd4f5aede7a88f3f4e;hpb=51cf89e90eef8b300c2786eb1560dd89e6e83445 diff --git a/getgroupcommand.cpp b/getgroupcommand.cpp index b4d2d74..529ed93 100644 --- a/getgroupcommand.cpp +++ b/getgroupcommand.cpp @@ -8,47 +8,135 @@ */ #include "getgroupcommand.h" +#include "inputdata.h" - -GetgroupCommand::GetgroupCommand(){ +//********************************************************************************************************************** +vector GetgroupCommand::setParameters(){ try { - globaldata = GlobalData::getInstance(); - groupMap = globaldata->gGroupmap; + CommandParameter pshared("shared", "InputTypes", "", "current", "none", "none", "none","",false,true, true); parameters.push_back(pshared); + 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) { - cout << "Standard Error: " << e.what() << " has occurred in the GetgroupCommand class Function GetgroupCommand. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n"; + m->errorOut(e, "GetgroupCommand", "setParameters"); exit(1); } - catch(...) { - cout << "An unknown error has occurred in the GetgroupCommand class function GetgroupCommand. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n"; +} +//********************************************************************************************************************** +string GetgroupCommand::getHelpString(){ + try { + string helpString = ""; + helpString += "The get.group command parameter is shared and it's required if you have no valid current file.\n"; + helpString += "You may not use any parameters with the get.group command.\n"; + helpString += "The get.group command should be in the following format: \n"; + helpString += "get.group()\n"; + helpString += "Example get.group().\n"; + return helpString; + } + catch(exception& e) { + m->errorOut(e, "GetgroupCommand", "getHelpString"); exit(1); - } - + } } //********************************************************************************************************************** - -GetgroupCommand::~GetgroupCommand(){ +GetgroupCommand::GetgroupCommand(){ + try { + abort = true; calledHelp = true; + setParameters(); + } + catch(exception& e) { + m->errorOut(e, "GetgroupCommand", "GetgroupCommand"); + exit(1); + } +} +//********************************************************************************************************************** +GetgroupCommand::GetgroupCommand(string option) { + try { + abort = false; calledHelp = false; + + //allow user to run help + if(option == "help") { help(); abort = true; calledHelp = true; } + else if(option == "citation") { citation(); abort = true; calledHelp = true;} + + else { + vector myArray = setParameters(); + + OptionParser parser(option); + map parameters = parser.getParameters(); + map::iterator it; + + ValidParameters validParameter; + //check to make sure all parameters are valid for command + for (it = parameters.begin(); it != parameters.end(); it++) { + if (validParameter.isValidParameter(it->first, myArray, it->second) != true) { abort = true; } + } + + //if the user changes the input directory command factory will send this info to us in the output parameter + string inputDir = validParameter.validFile(parameters, "inputdir", false); + if (inputDir == "not found"){ inputDir = ""; } + else { + string path; + it = parameters.find("shared"); + //user has given a template file + if(it != parameters.end()){ + path = m->hasPath(it->second); + //if the user has not given a path then, add inputdir. else leave path alone. + if (path == "") { parameters["shared"] = inputDir + it->second; } + } + } + + //get shared file + sharedfile = validParameter.validFile(parameters, "shared", true); + if (sharedfile == "not open") { sharedfile = ""; abort = true; } + else if (sharedfile == "not found") { + //if there is a current shared file, use it + sharedfile = m->getSharedFile(); + if (sharedfile != "") { m->mothurOut("Using " + sharedfile + " as input file for the shared parameter."); m->mothurOutEndLine(); } + else { m->mothurOut("You have no current sharedfile and the shared parameter is required."); m->mothurOutEndLine(); abort = true; } + }else { m->setSharedFile(sharedfile); } + + + //if the user changes the output directory command factory will send this info to us in the output parameter + outputDir = validParameter.validFile(parameters, "outputdir", false); if (outputDir == "not found"){ outputDir = m->hasPath(sharedfile); } + } + } + catch(exception& e) { + m->errorOut(e, "GetgroupCommand", "GetgroupCommand"); + exit(1); + } } - //********************************************************************************************************************** int GetgroupCommand::execute(){ try { - vector groupNames = groupMap->namesOfGroups; - for(int i = 0; i < groupNames.size(); i++) - cout << groupNames[i] << "\n"; + + if (abort == true) { if (calledHelp) { return 0; } return 2; } + + InputData input(sharedfile, "sharedfile"); + vector lookup = input.getSharedRAbundVectors(); + + for (int i = 0; i < lookup.size(); i++) { + m->mothurOut(lookup[i]->getGroup()); m->mothurOutEndLine(); + delete lookup[i]; + } + + m->mothurOutEndLine(); + m->mothurOut("Output File Names: "); m->mothurOutEndLine(); + m->mothurOutEndLine(); + return 0; } catch(exception& e) { - cout << "Standard Error: " << e.what() << " has occurred in the GetgroupCommand class Function execute. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n"; + m->errorOut(e, "GetgroupCommand", "execute"); exit(1); } - catch(...) { - cout << "An unknown error has occurred in the GetgroupCommand class function execute. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n"; - exit(1); - } } +//**********************************************************************************************************************