Skip to content

Commit

Permalink
* Fixed bug where the visualization functions 'Plot histogram of p-va…
Browse files Browse the repository at this point in the history
…lues' and 'Histogram of a column' would not display a graph immediately when using the stand-alone app.
  • Loading branch information
GuyTeichman committed May 26, 2024
1 parent ea56709 commit b99aec7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
History
=======

3.13.0 (2024-06-??)
-------------------


Fixed
******
* Fixed bug where the visualization functions 'Plot histogram of p-values' and 'Histogram of a column' would not display a graph immediately when using the stand-alone app.

3.12.0 (2024-05-14)
-------------------
Expand Down
3 changes: 2 additions & 1 deletion rnalysis/filtering.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,7 @@ def histogram(self, column: param_typing.ColumnName, bins: int = 100,
ax.set_yscale('log')
if x_logscale:
ax.set_xscale('log')
plt.show()
return fig

@staticmethod
Expand Down Expand Up @@ -2836,7 +2837,7 @@ def pval_histogram(self, adjusted_pvals: bool = False, bin_size: Fraction = 0.05
ax.set_xlabel(x_label)
ax.set_ylabel('Frequency')
ax.set_xticks(np.arange(0, 1.1, 0.1))

plt.show()
return fig

@readable_name('Filter by absolute log2 fold-change magnitude')
Expand Down

0 comments on commit b99aec7

Please sign in to comment.