改变取出的氨基酸的颜色

时间:2013-04-21 11:54:20

标签: biopython pymol

我想写一个PyMOL脚本来改变XYZ位置的氨基酸颜色(或以某种方式在XYZ位置放置一些带标记的标记)。

有人知道怎么做吗?

由于

1 个答案:

答案 0 :(得分:0)

你知道PyMOL中的pseudoatomlabel吗?

# to create a banner at certain position
pseudoatom mypsatm, pos=[10.0,10.0,10.0]  
show spheres, mypsatm
color red, mypsatm                     # now you see me
hide everything, mypsatm
label mypsatm, 'How about this'        # only show banner  

# to select residues close to that position
select mysel, byres mypsatm around 4   # 4 Angstroms around mypsatm