X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=counttable.cpp;h=a664228b17c35fff4ce48ca0ea5255b5b99bb1f3;hb=5a4ac4f954c4b4445bcee272f1f8220ddcc9c1e4;hp=7f08509897f0765823b4e2e7b65f837809821c45;hpb=d70a1c2d70c5a516e74880709e3b48cfc1ce0321;p=mothur.git diff --git a/counttable.cpp b/counttable.cpp index 7f08509..a664228 100644 --- a/counttable.cpp +++ b/counttable.cpp @@ -42,7 +42,8 @@ int CountTable::readTable(string file) { if (m->control_pressed) { break; } - in >> name >> thisTotal; m->gobble(in); + in >> name; m->gobble(in); in >> thisTotal; m->gobble(in); + if (m->debug) { m->mothurOut("[DEBUG]: " + name + '\t' + toString(thisTotal) + "\n"); } //if group info, then read it vector groupCounts; groupCounts.resize(numGroups, 0); @@ -157,7 +158,41 @@ int CountTable::getNumSeqs(string seqName) { } } /************************************************************/ -//returns names of seqs +//returns unique index for sequence like get in NameAssignment +int CountTable::get(string seqName) { + try { + + map::iterator it = indexNameMap.find(seqName); + if (it == indexNameMap.end()) { + m->mothurOut("[ERROR]: " + seqName + " is not in your count table. Please correct.\n"); m->control_pressed = true; + }else { return it->second; } + + return -1; + } + catch(exception& e) { + m->errorOut(e, "CountTable", "get"); + exit(1); + } +} +/************************************************************/ +//create ListVector from uniques +ListVector CountTable::getListVector() { + try { + ListVector list(indexNameMap.size()); + for (map::iterator it = indexNameMap.begin(); it != indexNameMap.end(); it++) { + if (m->control_pressed) { break; } + list.set(it->second, it->first); + } + return list; + } + catch(exception& e) { + m->errorOut(e, "CountTable", "getListVector"); + exit(1); + } +} + +/************************************************************/ +//returns the names of all unique sequences in file vector CountTable::getNamesOfSeqs() { try { vector names;