X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=decalc.cpp;h=f0b1ecc4fb1d31cbb79837579604cffaf84863e9;hb=d8ed98e71c2da5b39b8a778e2c694a4ddff677eb;hp=2e577d2275edbd3212dfc064307d7c144c9ab469;hpb=2b96bd74f70764a8b51436883afdc871fe826762;p=mothur.git diff --git a/decalc.cpp b/decalc.cpp index 2e577d2..f0b1ecc 100644 --- a/decalc.cpp +++ b/decalc.cpp @@ -780,7 +780,7 @@ vector DeCalculator::findClosest(Sequence* querySeq, vector seen; map::iterator it; @@ -827,12 +827,15 @@ vector DeCalculator::findClosest(Sequence* querySeq, vector dists.size()) { //m->mothurOut("numwanted is larger than the number of template sequences, adjusting numwanted."); m->mothurOutEndLine(); - numWanted = dists.size(); } + numWanted = dists.size(); + } //cout << numWanted << endl; for (int i = 0; i < numWanted; i++) { //cout << dists[i].seq->getName() << '\t' << dists[i].dist << endl; + Sequence* temp = new Sequence(db[dists[i].index]->getName(), db[dists[i].index]->getAligned()); //have to make a copy so you can trim and filter without stepping on eachother. + seqsMatches.push_back(temp); indexes.push_back(dists[i].index); }