From 219226270abf5b6ff293d954bd94e65c2ddd0b4c Mon Sep 17 00:00:00 2001 From: Stephen Beckstrom-Sternberg Date: Thu, 1 Feb 2024 15:14:06 -0700 Subject: [PATCH] Update heatcluster.py typos --- heatcluster.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/heatcluster.py b/heatcluster.py index c2befc7..40e1de8 100755 --- a/heatcluster.py +++ b/heatcluster.py @@ -33,7 +33,7 @@ def main(args): df = read_snp_matrix(SNPmatrix) logging.debug('The input SNP matrix:') - logging.debug(df.to_string()) + logging.debug(df) #if len(df.columns) > len(df.rows): # print('This matrix has been melted. Sorry for your loss!') @@ -41,7 +41,7 @@ def main(args): df = clean_and_read_df(df) logging.debug('The clean SNP matrix:') - logging.debug(df.to_string()) + logging.debug(df) (df, fontSize, labelSize, figsize, labels) = determine_heatmap_size(df, SNPmatrix)