X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=trialswap2.h;h=455221968f7d513641b0095f457a44b3778401c1;hp=027c946c157e200e3e63859ee27b8607ba42ab88;hb=df7e3ff9f68ef157b0328a2d353c3258c5d45d89;hpb=41a0537df3cb09cb8c725eab126fcf9bf28ebd8d diff --git a/trialswap2.h b/trialswap2.h index 027c946..4552219 100644 --- a/trialswap2.h +++ b/trialswap2.h @@ -16,17 +16,19 @@ class TrialSwap2 { public: - TrialSwap2(){ m = MothurOut::getInstance(); }; + TrialSwap2(){ m = MothurOut::getInstance(); }; ~TrialSwap2(){}; double calc_pvalue_lessthan (vector, double); double calc_pvalue_greaterthan (vector, double); - int swap_checkerboards (vector > &); - int calc_combo (vector > &); + int swap_checkerboards (vector > &, int, int); + int calc_combo (int, int, vector > &); double calc_vratio (int, int, vector, vector); int calc_checker (vector > &, vector, int, int); double calc_c_score (vector > &, vector, int, int); - + double get_zscore (double, double, double); + double getSD (int, vector, double); + private: MothurOut* m; @@ -35,9 +37,8 @@ private: int print_matrix(vector > &, int, int); - + }; - #endif