X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=sensspeccommand.cpp;h=cfa1f5b6dc0649925ff4762abdef070e93fd7688;hb=529ec122f7cac4af987e121d150b878d7c7a0d5d;hp=55d90bdd2ce1debc857ddb33a47969e0c3f66933;hpb=e1093e23e1c9609f95b2b71e6053473a912fcc47;p=mothur.git diff --git a/sensspeccommand.cpp b/sensspeccommand.cpp index 55d90bd..cfa1f5b 100644 --- a/sensspeccommand.cpp +++ b/sensspeccommand.cpp @@ -45,6 +45,26 @@ string SensSpecCommand::getHelpString(){ } } //********************************************************************************************************************** +string SensSpecCommand::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 == "sensspec") { outputFileName = "sensspec"; } + 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, "SensSpecCommand", "getOutputFileNameTag"); + exit(1); + } +} +//********************************************************************************************************************** SensSpecCommand::SensSpecCommand(){ try { abort = true; calledHelp = true; @@ -197,7 +217,7 @@ SensSpecCommand::SensSpecCommand(string option) { else { allLines = 1; } } - sensSpecFileName = outputDir + m->getRootName(m->getSimpleName(listFile)) + "sensspec"; + sensSpecFileName = outputDir + m->getRootName(m->getSimpleName(listFile)) + getOutputFileNameTag("sensspec"); } } catch(exception& e) {