From 74fdcbcb6fa579f788e4bdadaf004c752349fcf7 Mon Sep 17 00:00:00 2001 From: Pjotr Prins Date: Sat, 15 Sep 2018 09:47:43 +0000 Subject: Remove noisy batch_compute message --- src/lmm.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lmm.cpp b/src/lmm.cpp index dbf1ad5..8340460 100644 --- a/src/lmm.cpp +++ b/src/lmm.cpp @@ -1497,7 +1497,7 @@ void LMM::Analyze(std::function< SnpNameValues(size_t) >& fetch_snp, auto batch_compute = [&](size_t l) { // using a C++ closure // Compute SNPs in batch, note the computations are independent per SNP - debug_msg("enter batch_compute"); + // debug_msg("enter batch_compute"); gsl_matrix_view Xlarge_sub = gsl_matrix_submatrix(Xlarge, 0, 0, inds, l); gsl_matrix_view UtXlarge_sub = gsl_matrix_submatrix(UtXlarge, 0, 0, inds, l); @@ -1545,7 +1545,7 @@ void LMM::Analyze(std::function< SnpNameValues(size_t) >& fetch_snp, p_wald, p_lrt, p_score, logl_H1}; sumStat.push_back(SNPs); } - debug_msg("exit batch_compute"); + // debug_msg("exit batch_compute"); }; const auto num_snps = indicator_snp.size(); -- cgit v1.2.3