X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=anosimcommand.cpp;h=bd4e6b0683886bd0012e6b222a12592c8e594107;hb=ccae9eef0b44f2d63fdf4a707d0d40243aa1b990;hp=c5cb4d60c751d6614b82cd961c29d9e645fcbaa8;hpb=220dc345e493cddc569521111ce32ac4d965ab7f;p=mothur.git diff --git a/anosimcommand.cpp b/anosimcommand.cpp index c5cb4d6..bd4e6b0 100644 --- a/anosimcommand.cpp +++ b/anosimcommand.cpp @@ -49,7 +49,26 @@ string AnosimCommand::getHelpString(){ exit(1); } } - +//********************************************************************************************************************** +string AnosimCommand::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 == "anosim") { outputFileName = "anosim"; } + 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, "AnosimCommand", "getOutputFileNameTag"); + exit(1); + } +} //********************************************************************************************************************** AnosimCommand::AnosimCommand(){ try { @@ -138,11 +157,11 @@ AnosimCommand::AnosimCommand(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); } } @@ -176,13 +195,19 @@ int AnosimCommand::execute(){ //link designMap to rows/columns in distance matrix map > origGroupSampleMap; for(int i=0;igetGroup(sampleNames[i])].push_back(i); + string group = designMap->getGroup(sampleNames[i]); + + if (group == "not found") { + m->mothurOut("[ERROR]: " + sampleNames[i] + " is not in your design file, please correct."); m->mothurOutEndLine(); m->control_pressed = true; + }else { origGroupSampleMap[group].push_back(i); } } int numGroups = origGroupSampleMap.size(); + if (m->control_pressed) { delete designMap; return 0; } + //create a new filename ofstream ANOSIMFile; - string ANOSIMFileName = outputDir + m->getRootName(m->getSimpleName(phylipFileName)) + "anosim"; + string ANOSIMFileName = outputDir + m->getRootName(m->getSimpleName(phylipFileName)) + getOutputFileNameTag("anosim"); m->openOutputFile(ANOSIMFileName, ANOSIMFile); outputNames.push_back(ANOSIMFileName); outputTypes["anosim"].push_back(ANOSIMFileName); m->mothurOut("\ncomparison\tR-value\tP-value\n");