Skip to content

Commit

Permalink
small tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
Xu, Beisi authored and Xu, Beisi committed Jul 12, 2023
1 parent fb92d3c commit e44f241
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deeptools/plotHeatmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def autobreaklinetitle(title, sep="[-_,.]", lmax=15):
tmp = ""
else:
tmp += "-"
newtitle += tmp.strip("-") + "\n"
newtitle += tmp.strip("-")
return newtitle


Expand Down
2 changes: 1 addition & 1 deletion deeptools/plotProfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def autobreaklinetitle(title, sep="[-_,.]", lmax=15):
tmp = ""
else:
tmp += "-"
newtitle += tmp.strip("-") + "\n"
newtitle += tmp.strip("-")
return newtitle


Expand Down

0 comments on commit e44f241

Please sign in to comment.