X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=phylotypecommand.cpp;h=fbc7c6003989044eba397ba7d8d6d58fa37c768a;hb=67ea6ccd74dbd64828d31b952808255f206364ff;hp=eddddfa0534f547cfa1802b75211f1c6c9950f65;hpb=5c5c0428f6d548c28a8b903ac80efed4f92d59db;p=mothur.git diff --git a/phylotypecommand.cpp b/phylotypecommand.cpp index eddddfa..fbc7c60 100644 --- a/phylotypecommand.cpp +++ b/phylotypecommand.cpp @@ -16,12 +16,12 @@ //********************************************************************************************************************** vector PhylotypeCommand::setParameters(){ try { - CommandParameter ptaxonomy("taxonomy", "InputTypes", "", "", "none", "none", "none",false,true); parameters.push_back(ptaxonomy); - CommandParameter pname("name", "InputTypes", "", "", "none", "none", "none",false,false); parameters.push_back(pname); - CommandParameter pcutoff("cutoff", "Number", "", "-1", "", "", "",false,false); parameters.push_back(pcutoff); - CommandParameter plabel("label", "String", "", "", "", "", "",false,false); parameters.push_back(plabel); - CommandParameter pinputdir("inputdir", "String", "", "", "", "", "",false,false); parameters.push_back(pinputdir); - CommandParameter poutputdir("outputdir", "String", "", "", "", "", "",false,false); parameters.push_back(poutputdir); + CommandParameter ptaxonomy("taxonomy", "InputTypes", "", "", "none", "none", "none","list-rabund-sabund",false,true,true); parameters.push_back(ptaxonomy); + CommandParameter pname("name", "InputTypes", "", "", "none", "none", "none","",false,false,true); parameters.push_back(pname); + CommandParameter pcutoff("cutoff", "Number", "", "-1", "", "", "","",false,false,true); parameters.push_back(pcutoff); + CommandParameter plabel("label", "String", "", "", "", "", "","",false,false); parameters.push_back(plabel); + 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); } @@ -54,26 +54,21 @@ string PhylotypeCommand::getHelpString(){ } } //********************************************************************************************************************** -string PhylotypeCommand::getOutputFileNameTag(string type, string inputName=""){ - try { - string outputFileName = ""; - map >::iterator it; +string PhylotypeCommand::getOutputPattern(string type) { + try { + string pattern = ""; - //is this a type this command creates - it = outputTypes.find(type); - if (it == outputTypes.end()) { m->mothurOut("[ERROR]: this command doesn't create a " + type + " output file.\n"); } - else { - if (type == "list") { outputFileName = "list"; } - else if (type == "rabund") { outputFileName = "rabund"; } - else if (type == "sabund") { outputFileName = "sabund"; } - else { m->mothurOut("[ERROR]: No definition for type " + type + " output file tag.\n"); m->control_pressed = true; } - } - return outputFileName; - } - catch(exception& e) { - m->errorOut(e, "PhylotypeCommand", "getOutputFileNameTag"); - exit(1); - } + if (type == "list") { pattern = "[filename],[tag],list"; } + else if (type == "rabund") { pattern = "[filename],[tag],rabund"; } + else if (type == "sabund") { pattern = "[filename],[tag],sabund"; } + else { m->mothurOut("[ERROR]: No definition for type " + type + " output pattern.\n"); m->control_pressed = true; } + + return pattern; + } + catch(exception& e) { + m->errorOut(e, "PhylotypeCommand", "getOutputPattern"); + exit(1); + } } //********************************************************************************************************************** PhylotypeCommand::PhylotypeCommand(){ @@ -217,15 +212,17 @@ int PhylotypeCommand::execute(){ if (m->control_pressed) { delete tree; return 0; } string fileroot = outputDir + m->getRootName(m->getSimpleName(taxonomyFileName)); - - ofstream outList; - string outputListFile = fileroot + "tx." + getOutputFileNameTag("list"); + map variables; + variables["[filename]"] = fileroot; + variables["[tag]"] = "tx"; + ofstream outList; + string outputListFile = getOutputFileName("list",variables); m->openOutputFile(outputListFile, outList); ofstream outSabund; - string outputSabundFile = fileroot + "tx." + getOutputFileNameTag("sabund"); + string outputSabundFile = getOutputFileName("sabund",variables); m->openOutputFile(outputSabundFile, outSabund); ofstream outRabund; - string outputRabundFile = fileroot + "tx." + getOutputFileNameTag("rabund"); + string outputRabundFile = getOutputFileName("rabund",variables); m->openOutputFile(outputRabundFile, outRabund); outputNames.push_back(outputListFile); outputTypes["list"].push_back(outputListFile);