X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=sharedrabundfloatvector.cpp;h=d65cc204cc97bd43941928bad593b515522625e6;hb=37eac2026d91179acda0494c4dcca22f176551b9;hp=52ffbb89b3137cf724ac9ae1adc501f85c2dbe4e;hpb=605ab6fa594317a38f0df7bb6797740c735b2348;p=mothur.git diff --git a/sharedrabundfloatvector.cpp b/sharedrabundfloatvector.cpp index 52ffbb8..d65cc20 100644 --- a/sharedrabundfloatvector.cpp +++ b/sharedrabundfloatvector.cpp @@ -288,17 +288,21 @@ vector SharedRAbundFloatVector::getSharedRAbundFloatVe util = new SharedUtil(); util->setGroups(globaldata->Groups, globaldata->gGroupmap->namesOfGroups); - + + bool remove = false; for (int i = 0; i < lookup.size(); i++) { //if this sharedrabund is not from a group the user wants then delete it. if (util->isValidGroup(lookup[i]->getGroup(), globaldata->Groups) == false) { delete lookup[i]; lookup[i] = NULL; lookup.erase(lookup.begin()+i); i--; + remove = true; } } delete util; + + if (remove) { eliminateZeroOTUS(lookup); } return lookup; } @@ -409,6 +413,47 @@ OrderVector SharedRAbundFloatVector::getOrderVector(map* nameMap = N exit(1); } } - +//********************************************************************************************************************** +int SharedRAbundFloatVector::eliminateZeroOTUS(vector& thislookup) { + try { + + vector newLookup; + for (int i = 0; i < thislookup.size(); i++) { + SharedRAbundFloatVector* temp = new SharedRAbundFloatVector(); + temp->setLabel(thislookup[i]->getLabel()); + temp->setGroup(thislookup[i]->getGroup()); + newLookup.push_back(temp); + } + + //for each bin + for (int i = 0; i < thislookup[0]->getNumBins(); i++) { + if (m->control_pressed) { for (int j = 0; j < newLookup.size(); j++) { delete newLookup[j]; } return 0; } + + //look at each sharedRabund and make sure they are not all zero + bool allZero = true; + for (int j = 0; j < thislookup.size(); j++) { + if (thislookup[j]->getAbundance(i) != 0) { allZero = false; break; } + } + + //if they are not all zero add this bin + if (!allZero) { + for (int j = 0; j < thislookup.size(); j++) { + newLookup[j]->push_back(thislookup[j]->getAbundance(i), thislookup[j]->getGroup()); + } + } + } + + for (int j = 0; j < thislookup.size(); j++) { delete thislookup[j]; } + + thislookup = newLookup; + + return 0; + + } + catch(exception& e) { + m->errorOut(e, "SharedRAbundFloatVector", "eliminateZeroOTUS"); + exit(1); + } +} /***********************************************************************/