def make_canonical_plot(NMP_lim=(39,76),LID_lim=(99,154),
c1AKE=config.angles['1AKE'],
c4AKE=config.angles['4AKE'],
xray=True):
"""Scale current figure to default limits and plot the positions of 1AKE and 4AKE.
The points for the end states are taken from txt/x-ray_angles.txt.
If xray=True then add locations of the X-ray structures; this is
the same as running plot_xary_structures().
"""
import pylab
if xray:
plot_xray_structures()
pylab.plot([c1AKE[0],c4AKE[0]], [c1AKE[1],c4AKE[1]], 'sw', ms=12, alpha=0.8)
pylab.xlim(NMP_lim)
pylab.ylim(LID_lim)
评论列表
文章目录