X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=mergegroupscommand.cpp;h=5a672204973d252ce0fca2968c97acfdd112c5b5;hb=5b72d1cf3fa48730e5bb70d59cced1e43e1fe424;hp=e30558cbe69d3069135e0432f2eda7f9623095b5;hpb=0caf3fbabaa3ece404f8ce77f4c883dc5b1bf1dc;p=mothur.git diff --git a/mergegroupscommand.cpp b/mergegroupscommand.cpp index e30558c..5a67220 100644 --- a/mergegroupscommand.cpp +++ b/mergegroupscommand.cpp @@ -53,6 +53,27 @@ string MergeGroupsCommand::getHelpString(){ } } //********************************************************************************************************************** +string MergeGroupsCommand::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 = "merge" + m->getExtension(inputName); } + else if (type == "group") { outputFileName = "merge" + m->getExtension(inputName); } + 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, "MergeGroupsCommand", "getOutputFileNameTag"); + exit(1); + } +} +//********************************************************************************************************************** MergeGroupsCommand::MergeGroupsCommand(){ try { abort = true; calledHelp = true; @@ -284,8 +305,8 @@ int MergeGroupsCommand::processSharedFile(GroupMap*& designMap){ string thisOutputDir = outputDir; if (outputDir == "") { thisOutputDir += m->hasPath(sharedfile); } - string outputFileName = thisOutputDir + m->getRootName(m->getSimpleName(sharedfile)) + "merge" + m->getExtension(sharedfile); - outputTypes["shared"].push_back(outputFileName); outputNames.push_back(outputFileName); + string outputFileName = thisOutputDir + m->getRootName(m->getSimpleName(sharedfile)) + getOutputFileNameTag("shared", sharedfile); + outputTypes["shared"].push_back(outputFileName); outputNames.push_back(outputFileName); ofstream out; m->openOutputFile(outputFileName, out); @@ -387,7 +408,7 @@ int MergeGroupsCommand::processGroupFile(GroupMap*& designMap){ string thisOutputDir = outputDir; if (outputDir == "") { thisOutputDir += m->hasPath(groupfile); } - string outputFileName = thisOutputDir + m->getRootName(m->getSimpleName(groupfile)) + "merge" + m->getExtension(groupfile); + string outputFileName = thisOutputDir + m->getRootName(m->getSimpleName(groupfile)) + getOutputFileNameTag("group", groupfile); outputTypes["group"].push_back(outputFileName); outputNames.push_back(outputFileName); ofstream out;