X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=makegroupcommand.cpp;h=77c2a2911468fe8c0cd123eddce3346b02a4c54c;hb=6ede3bf5c0a9eedb23f24577a97da81ab3e1f7df;hp=0add62e03a99270babfde920acca61a65dcdc2b3;hpb=0caf3fbabaa3ece404f8ce77f4c883dc5b1bf1dc;p=mothur.git diff --git a/makegroupcommand.cpp b/makegroupcommand.cpp index 0add62e..77c2a29 100644 --- a/makegroupcommand.cpp +++ b/makegroupcommand.cpp @@ -48,6 +48,26 @@ string MakeGroupCommand::getHelpString(){ } } //********************************************************************************************************************** +string MakeGroupCommand::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 == "group") { outputFileName = "groups"; } + 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, "MakeGroupCommand", "getOutputFileNameTag"); + exit(1); + } +} +//********************************************************************************************************************** MakeGroupCommand::MakeGroupCommand(){ try { abort = true; calledHelp = true; @@ -165,8 +185,8 @@ MakeGroupCommand::MakeGroupCommand(string option) { } //prevent giantic file name - if (fastaFileNames.size() > 3) { filename = outputDir + "merge.groups"; } - else { filename += "groups"; } + if (fastaFileNames.size() > 3) { filename = outputDir + "merge." + getOutputFileNameTag("group"); } + else { filename += getOutputFileNameTag("group"); } //make sure there is at least one valid file left if (fastaFileNames.size() == 0) { m->mothurOut("no valid files."); m->mothurOutEndLine(); abort = true; }