8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

AlphaFold予測構造についてのpLDDTカラーリングコマンド

Last updated at Posted at 2022-10-04

AlphaFold Databaseで使われている予測構造の自信度ことpLDDT値に応じたカラーリングスキームをPyMOLやUCSF Chimera, Chimera Xなどで再現したいということはよくあると思いますので、それを載せておきます。

お手本

こちらのカラーリングスキームを再現します。

Screenshot 2022-10-05 0.02.57.png

PyMOL

color 0x0053D6, b < 100
color 0x65CBF3, b < 90
color 0xFFDB13, b < 70
color 0xFF7D45, b < 50
# 原子ごとの色分け
util.cnc

Screenshot 2022-10-05 0.05.21.png

オブジェクトごとにしたい場合はcolor 0x0053D6, AF-A0A452S449-F1-model_v3 and b < 100のように、オブジェクト名をb < の前に挟んでおきましょう。

color 0x0053D6, (object_name) and b < 100
color 0x65CBF3, (object_name) and b < 90
color 0xFFDB13, (object_name) and b < 70
color 0xFF7D45, (object_name) and b < 50

(参考)spectrum b, red_yellow_green_cyan_blue, minimum=50, maximum=90を使う方法もあり、これは値に応じてグラデーションになるので値の大小関係が明確になりますが、あまり差はないかもしれません。

Screenshot 2022-10-05 0.07.35.png

UCSF Chimera

上部メニューのFavoritesからCommand Lineを選択することで画面下部にコマンド入力欄が現れるので、そこに以下のコマンドを入力します。

color #0053D6 @/bfactor<100
color #65CBF3 @/bfactor<90
color #FFDB13 @/bfactor<70
color #FF7D45 @/bfactor<50

Screenshot 2022-10-05 0.14.26.png

UCSF ChimeraX

文法がChimeraから変わっている。

color @@bfactor<100 #0053D6
color @@bfactor<90 #65CBF3
color @@bfactor<70 #FFDB13
color @@bfactor<50 #FF7D45

Screenshot 2022-10-05 0.12.58.png

8
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?