X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=uvest.h;h=384e80c3e54102635022b62aec12e4a66ee81289;hb=a0f1fca79d2ddfa7ad36b4485039c68b5704fe8d;hp=8906976faa784ca5a124cc402546f34611d11d00;hpb=58cf1d08fee8c64334979075fa57bcafb035a2ed;p=mothur.git diff --git a/uvest.h b/uvest.h index 8906976..384e80c 100644 --- a/uvest.h +++ b/uvest.h @@ -12,14 +12,8 @@ /* This class implements the UVEst estimator on two groups. It is used by sharedJAbund and SharedSorensonAbund. */ - -using namespace std; - -#include -#include -#include -#include +#include "mothur.h" #include "sharedrabundvector.h" typedef vector EstOutput; @@ -27,7 +21,10 @@ typedef vector EstOutput; /***********************************************************************/ class UVEst { public: - EstOutput getUVest(SharedRAbundVector* shared1, SharedRAbundVector* shared2); + UVEst() { m = MothurOut::getInstance(); } + EstOutput getUVest(vector); + private: + MothurOut* m; }; /***********************************************************************/