Skip to content

Commit

Permalink
v0.2.0 update
Browse files Browse the repository at this point in the history
  • Loading branch information
dinithins committed Apr 18, 2024
1 parent d8f5ba8 commit f9bc309
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 56 deletions.
2 changes: 1 addition & 1 deletion genes2genes/VisualUtils.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ def plot_heatmaps(mat_ref,mat_query,GENE_LIST, pathway_name, cluster=False, FIGS
max_val = np.max([np.max(mat_ref),np.max(mat_query)])
min_val = np.min([np.min(mat_ref),np.min(mat_query)])
plt.subplot(1,2,1)
ax=sb.heatmap(df, vmax=max_val,vmin=min_val, cbar_kws = dict(use_gridspec=False,location="top"))
ax=sb.heatmap(df, vmax=max_val,vmin=min_val, cbar_kws = dict(use_gridspec=False,location="top"), xticklabels=True, yticklabels=True)
plt.title('Reference')
ax.yaxis.set_label_position("left")
for tick in ax.get_yticklabels():
Expand Down
Loading

0 comments on commit f9bc309

Please sign in to comment.