X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=normalizesharedcommand.cpp;h=e41cfd9355ce1e08157069e59880aa32066e1505;hb=0cefb55a2616975bd4a144fc345693695ffc9bb6;hp=bbf9a8335a3c2847f89b8cf136670c03a73e9725;hpb=0caf3fbabaa3ece404f8ce77f4c883dc5b1bf1dc;p=mothur.git diff --git a/normalizesharedcommand.cpp b/normalizesharedcommand.cpp index bbf9a83..e41cfd9 100644 --- a/normalizesharedcommand.cpp +++ b/normalizesharedcommand.cpp @@ -54,7 +54,26 @@ string NormalizeSharedCommand::getHelpString(){ } } - +//********************************************************************************************************************** +string NormalizeSharedCommand::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 == "shared") { outputFileName = "norm.shared"; } + 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, "NormalizeSharedCommand", "getOutputFileNameTag"); + exit(1); + } +} //********************************************************************************************************************** NormalizeSharedCommand::NormalizeSharedCommand(){ try { @@ -449,7 +468,7 @@ int NormalizeSharedCommand::normalize(vector& thisLookUp){ if (pickedGroups) { eliminateZeroOTUS(thisLookUp); } - string outputFileName = outputDir + m->getRootName(m->getSimpleName(inputfile)) + thisLookUp[0]->getLabel() + ".norm.shared"; + string outputFileName = outputDir + m->getRootName(m->getSimpleName(inputfile)) + thisLookUp[0]->getLabel() + "." + getOutputFileNameTag("shared"); ofstream out; m->openOutputFile(outputFileName, out); outputNames.push_back(outputFileName); outputTypes["shared"].push_back(outputFileName); @@ -540,7 +559,7 @@ int NormalizeSharedCommand::normalize(vector& thisLook //save mothurOut's binLabels to restore for next label vector saveBinLabels = m->currentBinLabels; - string outputFileName = outputDir + m->getRootName(m->getSimpleName(inputfile)) + thisLookUp[0]->getLabel() + ".norm.shared"; + string outputFileName = outputDir + m->getRootName(m->getSimpleName(inputfile)) + thisLookUp[0]->getLabel() + "." + getOutputFileNameTag("shared"); ofstream out; m->openOutputFile(outputFileName, out); outputNames.push_back(outputFileName); outputTypes["shared"].push_back(outputFileName);