X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=trialswap2.h;fp=trialswap2.h;h=0000000000000000000000000000000000000000;hp=924938b1a16297015a3bdb14d07db0f91fc7b5bc;hb=4a877efa127e56e81a21f53cfdbbfd3bfbe8c4ff;hpb=a6cf29fa4dac0909c7582cb1094151d34093ee76 diff --git a/trialswap2.h b/trialswap2.h deleted file mode 100644 index 924938b..0000000 --- a/trialswap2.h +++ /dev/null @@ -1,42 +0,0 @@ -#ifndef TRIALSWAP2 -#define TRIALSWAP2 - -/* - * trialswap2.h - * Mothur - * - * Created by Kathryn Iverson on June 27, 2011. - * Copyright 2011 Schloss Lab. All rights reserved. - * - */ - -#include "mothurout.h" - - -class TrialSwap2 { - -public: - TrialSwap2(){ m = MothurOut::getInstance(); }; - ~TrialSwap2(){}; - - double calc_pvalue_lessthan (vector, double); - double calc_pvalue_greaterthan (vector, double); - 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); - - -private: - MothurOut* m; - - double t_test (double, int, double, vector); - int print_matrix(vector > &, int, int); - - - -}; -#endif - -