Skip to content

Commit

Permalink
fixup! limited numpy version to <2 until support is added to dependen…
Browse files Browse the repository at this point in the history
…cies (hdbscan, scikit-learn-extra). added pandas[performance,parquet] to requirements.txt
  • Loading branch information
GuyTeichman committed Jun 30, 2024
1 parent abb41ec commit 23f3752
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rnalysis/utils/ontology.py
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ def plot_ontology(self, namespace: Literal[param_typing.GO_ASPECTS], results_df:
sm = ScalarMappable(cmap=colormap, norm=plt.Normalize(*bounds))
sm.set_array(np.array([]))
cbar_label_kwargs = dict(label=ylabel, fontsize=16, labelpad=15)
cbar = fig.colorbar(sm, ticks=range(int(bounds[0]), int(bounds[1]) + 1), location='bottom')
cbar = fig.colorbar(sm, ticks=range(int(bounds[0]), int(bounds[1]) + 1), location='bottom', ax=ax)
cbar.set_label(**cbar_label_kwargs)
cbar.ax.tick_params(labelsize=14, pad=6)

Expand Down

0 comments on commit 23f3752

Please sign in to comment.