Skip to content

Commit

Permalink
Update heatcluster.py
Browse files Browse the repository at this point in the history
typos
  • Loading branch information
DrB-S authored Feb 1, 2024
1 parent 953c888 commit 2192262
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions heatcluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ 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!')
# exit(0)

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)

Expand Down

0 comments on commit 2192262

Please sign in to comment.