From 530488454ae6a35b098b81b45581f88f02d6de0e Mon Sep 17 00:00:00 2001 From: Pjotr Prins Date: Thu, 5 Oct 2017 09:18:59 +0000 Subject: Adding debug statements on entering functions and added test for issue 58 --- src/varcov.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/varcov.cpp') diff --git a/src/varcov.cpp b/src/varcov.cpp index 0f87ba8..39c3523 100644 --- a/src/varcov.cpp +++ b/src/varcov.cpp @@ -247,6 +247,7 @@ void Calc_Cor(vector> &X_mat, vector &cov_vec) { // genotype file and calculate the covariance matrix for neighboring // SNPs output values at 10000-SNP-interval. void VARCOV::AnalyzeBimbam() { + debug_msg("entering"); igzstream infile(file_geno.c_str(), igzstream::in); if (!infile) { cout << "error reading genotype file:" << file_geno << endl; @@ -345,6 +346,7 @@ void VARCOV::AnalyzeBimbam() { } void VARCOV::AnalyzePlink() { + debug_msg("entering"); string file_bed = file_bfile + ".bed"; ifstream infile(file_bed.c_str(), ios::binary); if (!infile) { -- cgit v1.2.3