Skip to content

Commit

Permalink
version v0.3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
zouter committed Nov 6, 2024
1 parent 14ca540 commit c29b9b0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion scripts/dist.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
python -m setuptools_git_versioning

version="0.3.8"
version="0.3.9"

git add .
git commit -m "version v${version}"
Expand Down
14 changes: 8 additions & 6 deletions src/chromatinhd/models/diff/plot/differential.py
Original file line number Diff line number Diff line change
Expand Up @@ -559,6 +559,8 @@ def _setup_differential(
color="#333",
zorder=30,
)
elif label_cluster is False:
pass
else:
text = ax.annotate(
text=f"{cluster_info_oi['label']}",
Expand All @@ -572,12 +574,12 @@ def _setup_differential(
color="#333",
zorder=30,
)
text.set_path_effects(
[
mpl.patheffects.Stroke(linewidth=2, foreground="white"),
mpl.patheffects.Normal(),
]
)
text.set_path_effects(
[
mpl.patheffects.Stroke(linewidth=2, foreground="white"),
mpl.patheffects.Normal(),
]
)

ax.set_xticks([])

Expand Down

0 comments on commit c29b9b0

Please sign in to comment.