X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=summarycommand.cpp;h=5adf44ff8621e5ea6e5231abc9417cdb3ff93e80;hb=9ca2caadbeac83bb84b3330d9204b1b659d62941;hp=36a4e0efb5fc9fdbbe8587eca17886c8b5c55ea4;hpb=42b802c0006d8b13bd5b27ea48d032a85d3f2102;p=mothur.git diff --git a/summarycommand.cpp b/summarycommand.cpp index 36a4e0e..5adf44f 100644 --- a/summarycommand.cpp +++ b/summarycommand.cpp @@ -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()); } } }