Showing figure title
Closed this issue · 2 comments
0xorial commented
moshi4 commented
Are you setting the y argument for fig.suptitle()
method?
Code Example
from pymsaviz import MsaViz, get_msa_testdata
msa_file = get_msa_testdata("HIGD2A.fa")
mv = MsaViz(msa_file, wrap_length=60, show_count=True)
fig = mv.plotfig()
fig.suptitle("pyMSAviz title", y=1.15, size=15, color="black")
fig.savefig("result.png")
result.png
0xorial commented
That solves the issue, thanks!