Skip to content

Commit

Permalink
Update plotting.py
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrofale authored Dec 21, 2024
1 parent e0f1e9d commit 262e32e
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions pyscicone/scicone/plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,8 @@ def plot_matrix(data, cbar_title="", mode='data', chr_stops_dict=None,
ax.vlines(list(chr_stops_dict.values())[:-1], *ax.get_ylim(), ls='--', linewidth=2.5)
plt.xlabel('Chromosomes', fontsize=textfontsize)

for tick in ax.xaxis.get_major_ticks():
tick.label.set_fontsize(tickfontsize)
for tick in ax.yaxis.get_major_ticks():
tick.label.set_fontsize(tickfontsize)
ax.tick_params(which='minor', labelsize=tickfontsize)
ax.tick_params(which='major', labelsize=tickfontsize)
if labels is not None:
plt.yticks([])

Expand Down

0 comments on commit 262e32e

Please sign in to comment.