X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=rarefactcommand.cpp;h=a83a750c5944aecfb3e740e5caca8bd231f11148;hb=9ca2caadbeac83bb84b3330d9204b1b659d62941;hp=594b1dde19ee6f48bfbe6641133428513c22c27f;hpb=42b802c0006d8b13bd5b27ea48d032a85d3f2102;p=mothur.git diff --git a/rarefactcommand.cpp b/rarefactcommand.cpp index 594b1dd..a83a750 100644 --- a/rarefactcommand.cpp +++ b/rarefactcommand.cpp @@ -10,6 +10,7 @@ #include "rarefactcommand.h" #include "ace.h" #include "sobs.h" +#include "nseqs.h" #include "chao1.h" #include "bootstrap.h" #include "simpson.h" @@ -49,6 +50,8 @@ RareFactCommand::RareFactCommand(){ rDisplays.push_back(new RareDisplay(new Simpson(), new ThreeColumnFile(fileNameRoot+"r_simpson"))); }else if (globaldata->Estimators[i] == "bootstrap") { rDisplays.push_back(new RareDisplay(new Bootstrap(), new ThreeColumnFile(fileNameRoot+"r_bootstrap"))); + }else if (globaldata->Estimators[i] == "nseqs") { + rDisplays.push_back(new RareDisplay(new NSeqs(), new ThreeColumnFile(fileNameRoot+"r_nseqs"))); } } }