aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPjotr Prins2018-09-15 09:47:43 +0000
committerPjotr Prins2018-09-15 09:47:43 +0000
commit74fdcbcb6fa579f788e4bdadaf004c752349fcf7 (patch)
tree12f273c655f6c3fc7263c8b6998c04be4922395a
parent01895de966f6a24a2ff6c77effaea895a45ba0c0 (diff)
downloadpangemma-74fdcbcb6fa579f788e4bdadaf004c752349fcf7.tar.gz
Remove noisy batch_compute message
-rw-r--r--src/lmm.cpp4
1 files 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();