]> git.donarmstrong.com Git - mothur.git/blobdiff - treemap.cpp
sped up splitting of distance file by 2.5 times by buffering the read and writes.
[mothur.git] / treemap.cpp
index bb624480e79640d8a23fc6fe4c47c8ba8c6b82a4..dcef7f7c19174f1aaf6a1435931c9005f986f638 100644 (file)
@@ -26,10 +26,10 @@ void TreeMap::readMap() {
                while(fileHandle){
                        fileHandle >> seqName;                  //read from first column
                        fileHandle >> seqGroup;                 //read from second column
-                       
+
                        namesOfSeqs.push_back(seqName);
                        setNamesOfGroups(seqGroup);
-                                               
+                                       
                        treemap[seqName].groupname = seqGroup;  //store data in map
                        
                        it2 = seqsPerGroup.find(seqGroup);