From e1d5fa98810e434dfe997c8a296868f065c1ee18 Mon Sep 17 00:00:00 2001 From: Alex Lancaster Date: Sat, 24 Feb 2024 21:56:32 -0500 Subject: [PATCH] fix missing argument --- src/gthwe/hwe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gthwe/hwe.c b/src/gthwe/hwe.c index 39695f115..24332de8c 100644 --- a/src/gthwe/hwe.c +++ b/src/gthwe/hwe.c @@ -86,7 +86,7 @@ int main(int argc, char *argv[]) size = sample.size; /* pass the parsed variables to do the main processing */ - run_data(genotypes, allele_array, no_allele, total, step, group, size, title, outfile, 1); + run_data(genotypes, allele_array, no_allele, total, step, group, size, title, outfile, 1, 0); free(genotypes); free(allele_array);