#pragma once#include "utils.h"#include "kfun/kfun.h"// Compute Chi-square from the number of males and females with a sequence as well as total males and total femalesdoubleget_chi_squared(uintn_males,uintn_females,uinttotal_males,uinttotal_females);// Compute the p-value for a Chi-squaredoubleget_chi_squared_p(doublechi_squared);