]> git.donarmstrong.com Git - mothur.git/blobdiff - sharedlistvector.cpp
added template=self capability to chimers.slayer, worked on corr.axes and added accno...
[mothur.git] / sharedlistvector.cpp
index f2d8e07f81320d58b500287dc66df8e068246ee5..1493ee99622602d914af8ca61400b522e4701132 100644 (file)
@@ -29,19 +29,19 @@ SharedListVector::SharedListVector(ifstream& f) : DataVector(), maxRank(0), numB
 
                //set up groupmap for later.
                groupmap = new GroupMap(globaldata->getGroupFile());
-               groupmap->readMap();
+               groupmap->readMap(); 
 
                int hold;
                string inputData;
                f >> label >> hold;
        
                data.assign(hold, "");
-       
+               
                for(int i=0;i<hold;i++){
                        f >> inputData;
                        set(i, inputData);
                }
-       
+               
        }
        catch(exception& e) {
                m->errorOut(e, "SharedListVector", "SharedListVector");
@@ -61,6 +61,8 @@ void SharedListVector::set(int binNumber, string seqNames){
                if(nNames_new > maxRank)        {       maxRank = nNames_new;   }
        
                numSeqs += (nNames_new - nNames_old);
+               
+                        
        }
        catch(exception& e) {
                m->errorOut(e, "SharedListVector", "set");