X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=homovacommand.cpp;h=006f1e4d5ee0b046e3216b0f470ce5d5c6200aa0;hb=cc19310422f125d6628980bd1148e1e816792382;hp=18690048c712c69bad1b1e9aa44c4e6b64a8cee9;hpb=ae57e166b2ed7b475ec3f466106bd76fabadd063;p=mothur.git diff --git a/homovacommand.cpp b/homovacommand.cpp index 1869004..006f1e4 100644 --- a/homovacommand.cpp +++ b/homovacommand.cpp @@ -49,9 +49,27 @@ string HomovaCommand::getHelpString(){ exit(1); } } - //********************************************************************************************************************** - +string HomovaCommand::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 == "homova") { outputFileName = "homova"; } + 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, "HomovaCommand", "getOutputFileNameTag"); + exit(1); + } +} +//********************************************************************************************************************** HomovaCommand::HomovaCommand(){ try { abort = true; calledHelp = true; @@ -139,11 +157,11 @@ HomovaCommand::HomovaCommand(string option) { string temp = validParameter.validFile(parameters, "iters", false); if (temp == "not found") { temp = "1000"; } - convert(temp, iters); + m->mothurConvert(temp, iters); temp = validParameter.validFile(parameters, "alpha", false); if (temp == "not found") { temp = "0.05"; } - convert(temp, experimentwiseAlpha); + m->mothurConvert(temp, experimentwiseAlpha); } } @@ -190,7 +208,7 @@ int HomovaCommand::execute(){ //create a new filename ofstream HOMOVAFile; - string HOMOVAFileName = outputDir + m->getRootName(m->getSimpleName(phylipFileName)) + "homova"; + string HOMOVAFileName = outputDir + m->getRootName(m->getSimpleName(phylipFileName)) + getOutputFileNameTag("homova"); m->openOutputFile(HOMOVAFileName, HOMOVAFile); outputNames.push_back(HOMOVAFileName); outputTypes["homova"].push_back(HOMOVAFileName);