]> git.donarmstrong.com Git - mothur.git/blobdiff - summarycommand.cpp
added shen calculator
[mothur.git] / summarycommand.cpp
index d0124d8516033800804e16cf5a092af8517e7fe7..b649582758636370f812a51cf182ce7813bc3e02 100644 (file)
@@ -27,6 +27,7 @@
 #include "efron.h"
 #include "boneh.h"
 #include "solow.h"
+#include "shen.h"
 
 //**********************************************************************************************************************
 
@@ -82,6 +83,9 @@ SummaryCommand::SummaryCommand(){
                                }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));
                                }
                        }
                }