Skip to content

Commit

Permalink
prevent popup plot
Browse files Browse the repository at this point in the history
  • Loading branch information
AdnanAbouelela committed Dec 5, 2024
1 parent c5ef14d commit 7afdf21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ data/
.ipynb_checkpoints/
__pycache__/
scripts/statistics/
*.tar.gz
4 changes: 1 addition & 3 deletions src/spaceolotl/fct/expression.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ def plot_gene_expression(input):
main_ax_ex.set_yticklabels(short_labels_ex)

plt.subplots_adjust(top=0.95, bottom=0.1, left=0.1, right=0.95)
plt.show()

def plot_de(input):

Expand All @@ -44,5 +43,4 @@ def plot_de(input):
short_labels_de = [label.split("-")[-1] for label in x_axis_labels]
main_ax_de.set_xticklabels(short_labels_de)

plt.subplots_adjust(top=1, bottom=0.2, left=0.05, right=0.95)
plt.show()
plt.subplots_adjust(top=1, bottom=0.2, left=0.05, right=0.95)

0 comments on commit 7afdf21

Please sign in to comment.