Pymol:对特定链上的残基使用cmd.color命令

时间:2019-07-05 10:02:47

标签: python pymol

我无法仅对Pymol中特定链的残基进行着色。抱歉,这似乎是一个明确的初学者问题。

到目前为止,我只能对所有链上具有一定值(例如141)的所有残基进行着色。

#I want to colour residue 141 on chain D blue.
first_res = 141
color("blue", 'resi ' + first_res)

1 个答案:

答案 0 :(得分:1)

要从特定链中选择残基,只需添加'and chain ...',如下所示:

cmd.color("blue", 'resi ' + first_res + ' and chain ' + first_chain))