X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=getlistcountcommand.cpp;fp=getlistcountcommand.cpp;h=b7c4f1790b152371a6e302f3d56ae79fc60badf1;hb=49d2b7459c5027557564b21e9487dadafbbbdc96;hp=980c886cc0cb79f51f892ee13fe4dc2c3061b812;hpb=ee8403d4eb5760187d62b42a9cf4272de8fc0ec4;p=mothur.git diff --git a/getlistcountcommand.cpp b/getlistcountcommand.cpp index 980c886..b7c4f17 100644 --- a/getlistcountcommand.cpp +++ b/getlistcountcommand.cpp @@ -49,6 +49,26 @@ string GetListCountCommand::getHelpString(){ } } //********************************************************************************************************************** +string GetListCountCommand::getOutputFileNameTag(string type, string inputName=""){ + try { + string outputFileName = ""; + map >::iterator it; + + //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 == "otu") { outputFileName = "otu"; } + 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, "GetListCountCommand", "getOutputFileNameTag"); + exit(1); + } +} +//********************************************************************************************************************** GetListCountCommand::GetListCountCommand(){ try { abort = true; calledHelp = true; @@ -234,7 +254,7 @@ void GetListCountCommand::process(ListVector* list) { try { string binnames; if (outputDir == "") { outputDir += m->hasPath(listfile); } - string outputFileName = outputDir + m->getRootName(m->getSimpleName(listfile)) + list->getLabel() + ".otu"; + string outputFileName = outputDir + m->getRootName(m->getSimpleName(listfile)) + list->getLabel() + "." +getOutputFileNameTag("otu"); m->openOutputFile(outputFileName, out); outputNames.push_back(outputFileName); outputTypes["otu"].push_back(outputFileName);