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

Pymol: Using the cmd.color command for residue on specific chain

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

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

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

到select来自特定链的残基,你只需要添加'and chain ...',如下所示:

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