]> git.donarmstrong.com Git - mothur.git/blobdiff - summarycommand.cpp
*** empty log message ***
[mothur.git] / summarycommand.cpp
index bd8deb1c60d1682a8d6b1377d6a46434ec823916..b649582758636370f812a51cf182ce7813bc3e02 100644 (file)
 #include "bstick.h"
 #include "goodscoverage.h"
 #include "coverage.h"
+#include "efron.h"
+#include "boneh.h"
+#include "solow.h"
+#include "shen.h"
 
 //**********************************************************************************************************************
 
@@ -70,6 +74,18 @@ SummaryCommand::SummaryCommand(){
                                        sumCalculators.push_back(new NSeqs());
                                }else if (globaldata->Estimators[i] == "goodscoverage") { 
                                        sumCalculators.push_back(new GoodsCoverage());
+                               }else if (globaldata->Estimators[i] == "efron") { 
+                                       convert(globaldata->getSize(), size);
+                                       sumCalculators.push_back(new Efron(size));
+                               }else if (globaldata->Estimators[i] == "boneh") { 
+                                       convert(globaldata->getSize(), size);
+                                       sumCalculators.push_back(new Boneh(size));
+                               }else if (globaldata->Estimators[i] == "solow") { 
+                                       convert(globaldata->getSize(), size);
+                                       sumCalculators.push_back(new Solow(size));
+                               }else if (globaldata->Estimators[i] == "shen") { 
+                                       convert(globaldata->getSize(), size);
+                                       sumCalculators.push_back(new Shen(size));
                                }
                        }
                }