From 12c5c4ad9e35be4680ee708b7c50a8bc50f81ae1 Mon Sep 17 00:00:00 2001 From: Marcus Fedarko Date: Mon, 1 Jul 2019 16:48:57 -0700 Subject: [PATCH] ENH: Add a new logging msg in the matching func --- qurro/_df_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/qurro/_df_utils.py b/qurro/_df_utils.py index 419b0377..6539b845 100644 --- a/qurro/_df_utils.py +++ b/qurro/_df_utils.py @@ -250,6 +250,7 @@ def match_table_and_data(table, feature_ranks, sample_metadata): ) ) + logging.debug("Starting matching table with sample metadata.") m_table_transpose, m_sample_metadata = matchdf( featurefiltered_table.T, sample_metadata )