Katzlab dd76ab1d12 Added PTL2 Scripts
These are PTL2 files from Auden 2/9
2023-02-14 11:20:52 -05:00

17 lines
350 B
C++

// Kishino-Hasegawa Test 2013 02 27 Eli Levy Karin
#ifndef ___KH_CALCULATION
#define ___KH_CALCULATION
#include "math.h"
#include <cmath>
#include "definitions.h"
namespace KH_calculation {
double calc_p_value_kh (const Vdouble & LogLikePerPositionA, const Vdouble & LogLikePerPositionB);
double get_phi (double z);
};
#endif