]> git.donarmstrong.com Git - mothur.git/blobdiff - summarycommand.cpp
added nseqs and sharednseqs calculators, removed excess tabs in output files.
[mothur.git] / summarycommand.cpp
index 36a4e0efb5fc9fdbbe8587eca17886c8b5c55ea4..5adf44ff8621e5ea6e5231abc9417cdb3ff93e80 100644 (file)
@@ -10,6 +10,7 @@
 #include "summarycommand.h"
 #include "ace.h"
 #include "sobs.h"
+#include "nseqs.h"
 #include "chao1.h"
 #include "bootstrap.h"
 #include "simpson.h"
@@ -46,6 +47,8 @@ SummaryCommand::SummaryCommand(){
                                        sumCalculators.push_back(new Simpson());
                                }else if(globaldata->Estimators[i] == "bootstrap"){
                                        sumCalculators.push_back(new Bootstrap());
+                               }else if (globaldata->Estimators[i] == "nseqs") { 
+                                       sumCalculators.push_back(new NSeqs());
                                }
                        }
                }