X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=binsequencecommand.cpp;fp=binsequencecommand.cpp;h=7569a4be3113144a96048f5a4d624d271c15b9f4;hb=49d2b7459c5027557564b21e9487dadafbbbdc96;hp=2117daff4f2558e26bcf0008666f87bee0180f4d;hpb=ee8403d4eb5760187d62b42a9cf4272de8fc0ec4;p=mothur.git diff --git a/binsequencecommand.cpp b/binsequencecommand.cpp index 2117daf..7569a4b 100644 --- a/binsequencecommand.cpp +++ b/binsequencecommand.cpp @@ -50,6 +50,26 @@ string BinSeqCommand::getHelpString(){ } } //********************************************************************************************************************** +string BinSeqCommand::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 == "fasta") { outputFileName = "fasta"; } + 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, "BinSeqCommand", "getOutputFileNameTag"); + exit(1); + } +} +//********************************************************************************************************************** BinSeqCommand::BinSeqCommand(){ try { abort = true; calledHelp = true; @@ -344,8 +364,8 @@ int BinSeqCommand::process(ListVector* list) { try { string binnames, name, sequence; - string outputFileName = outputDir + m->getRootName(m->getSimpleName(listfile)) + list->getLabel() + ".fasta"; - m->openOutputFile(outputFileName, out); + string outputFileName = outputDir + m->getRootName(m->getSimpleName(listfile)) + list->getLabel() + getOutputFileNameTag("fasta"); + m->openOutputFile(outputFileName, out); //save to output list of output file names outputNames.push_back(outputFileName); outputTypes["fasta"].push_back(outputFileName);