X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=amovacommand.cpp;fp=amovacommand.cpp;h=c4260fb096dd8b0b253f5239f7ce265376d24ed5;hb=49d2b7459c5027557564b21e9487dadafbbbdc96;hp=3ec14bf7c06af5883e7eb6d9b3b38449ceac83be;hpb=ee8403d4eb5760187d62b42a9cf4272de8fc0ec4;p=mothur.git diff --git a/amovacommand.cpp b/amovacommand.cpp index 3ec14bf..c4260fb 100644 --- a/amovacommand.cpp +++ b/amovacommand.cpp @@ -51,6 +51,26 @@ string AmovaCommand::getHelpString(){ } } //********************************************************************************************************************** +string AmovaCommand::getOutputFileNameTag(string type, string inputName=""){ + try { + string tag = ""; + 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 == "amova") { tag = "amova"; } + else { m->mothurOut("[ERROR]: No definition for type " + type + " output file.\n"); } + } + return tag; + } + catch(exception& e) { + m->errorOut(e, "AmovaCommand", "getOutputFileNameTag"); + exit(1); + } +} +//********************************************************************************************************************** AmovaCommand::AmovaCommand(){ try { abort = true; calledHelp = true; @@ -187,7 +207,7 @@ int AmovaCommand::execute(){ //create a new filename ofstream AMOVAFile; - string AMOVAFileName = outputDir + m->getRootName(m->getSimpleName(phylipFileName)) + "amova"; + string AMOVAFileName = outputDir + m->getRootName(m->getSimpleName(phylipFileName)) + getOutputFileNameTag("amova"); m->openOutputFile(AMOVAFileName, AMOVAFile); outputNames.push_back(AMOVAFileName); outputTypes["amova"].push_back(AMOVAFileName);