-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d6e8cb4
commit 74da5e9
Showing
3 changed files
with
29 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,38 @@ | ||
### Biological Unitを考慮した分子構造のロード | ||
|
||
タンパク質は1本のアミノ酸ポリペプチド鎖が折り畳まって存在しているのがほとんどですが、タンパク質の種類によっては、多量体の形で初めて安定に存在し機能しうるものもあります。**Biological Unit**(Biological Assemblyとも呼ばれる)とは、実際に生物の中で機能している構造の状態のことを指します。詳しくはPDBjのウェブサイトの「[非対称単位と生物学的単位について](https://pdbj.org/help/pdb_aubu)」も参照してください。 | ||
|
||
例として`PDB ID: 1ALK`(大腸菌由来アルカリフォスファターゼ)と`PDB ID: 1EW2`(ヒト由来アルカリフォスファターゼ)を比較してみましょう。各構造ファイルを取り扱うRCSB PDBのウェブサイト( https://www.rcsb.org/structure/1ALK と https://www.rcsb.org/structure/1EW2 )のStructure Summaryタブで画面左の方には、タンパク質の構造とともに、Global SymmetryとGlobal Stoichiometryの情報が書かれています。 | ||
例として`PDB ID: 1ALK`(大腸菌由来アルカリフォスファターゼ)と`PDB ID: 1EW2`(ヒト由来アルカリフォスファターゼ)を比較してみましょう。各構造ファイルを取り扱うRCSB PDBのウェブサイト( <https://www.rcsb.org/structure/1ALK> と <https://www.rcsb.org/structure/1EW2> )のStructure Summaryタブで画面左の方には、タンパク質の構造とともに、Global SymmetryとGlobal Stoichiometryの情報が書かれています。 | ||
|
||
<img src="./image/load/bunit1.png" width="80%"> | ||
<img src="./image/load/bunit1.png" width="80%" alt="bunit1"> | ||
|
||
Global Stoichiometryには`Homo 2-mer - A2`という情報が記されています。論文で調べてみても、このタンパク質がそれぞれホモ2量体として生物中で機能していることが示されています。しかしそれぞれのファイルをPyMOLで単純に開いてみますと、1ALKの方にはA chain、B chainの構造が含まれていますが、1EW2の方ではA chainしか含まれていません。これは、**PDBに登録されている原子座標のデータには、必要最小限の「非対称単位」(assymmetric unit)のみ含まれているから** です。 | ||
|
||
そこで、場合によっては2量体の状態でタンパク質構造を表示してみたいということがあると思います。PyMOL 1.8からはこのBiological Unitを考慮した構造のロードが簡単に行えるようになりましたので、それを`1EW2`ファイルに対してやってみます。以下の画像のように、[File]->[Get PDB...]を選び、続くウィンドウの画面でIDとAssembly情報を入力します。 | ||
|
||
<img src="./image/load/bunit2.png" width="25%"><br> | ||
<img src="./image/load/bunit3.png" width="40%"> | ||
<img src="./image/load/bunit2.png" width="25%" alt="bunit2"> | ||
|
||
<img src="./image/load/bunit3.png" width="40%" alt="bunit3"> | ||
|
||
これにより、1EW2の構造がホモ2量体構造で表示されました。 | ||
|
||
<img src="./image/load/bunit4.png" width="60%"> | ||
<img src="./image/load/bunit4.png" width="60%" alt="bunit4"> | ||
|
||
このチェインを別々に扱うためには、右側のオブジェクトパネルから`1EW2A`のAボタンをクリックし、[state] -> [split]を開いてクリックします。 | ||
|
||
<img src="./image/load/bunit5.png" width="30%"> | ||
<img src="./image/load/bunit5.png" width="30%" alt="bunit5"> | ||
|
||
すると、`1EW2A_0001`, `1EW2A_0002`というオブジェクトが新たに生成されます。ここまでくれば`1EW2A`オブジェクトは不要ですので、最後に`1EW2A`のAボタンから[delete object]を押せば完了です。 | ||
|
||
<img src="./image/load/bunit6.png" width="80%"> | ||
<img src="./image/load/bunit6.png" width="80%" alt="bunit6"> | ||
|
||
以上がBiological Unitを考慮した分子構造のロード操作ですが、これは一例であり、他にも同等の操作を達成する方法があります。コマンドラインで上記の操作を達成するには | ||
``` | ||
|
||
```shell | ||
set assembly, 1 | ||
fetch 1ew2 | ||
split_states 1ew2 | ||
delete 1ew2 | ||
``` | ||
|
||
でOKです。タイピングが早ければこちらの方が素早くできるでしょう。`set assembly, 1`に相当する設定変更は、上部メニューの[Setting] -> [mmCIF File Loading] -> [Load Assembly (Biological Unit)]にチェックを入れることでも可能です。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
### 構造ファイルのロード | ||
|
||
メニュー左上の[File]から、[Open...]を選び、PyMOLに表示させたい構造ファイルを選択します。ここでは、先程ダウンロードした `1alk.cif` ファイルを例として、ダブルクリックして表示させてみます。 | ||
|
||
<img src="./image/load/load1.png" width="25%"> | ||
<img src="./image/load/load1.png" width="25%" alt="load1"> | ||
|
||
すると、画面に1ALKのアルカリフォスファターゼの構造が表示されました。はじめは黒背景に緑のタンパク質がオブジェクトが浮かんでいると思いますが、ここで続けて、メニューの[Display]から[Background]->[White]を選択すると、白背景にすることができます。 | ||
|
||
<img src="./image/load/load3.png" width="40%"><br> | ||
<img src="./image/load/load2.png" width="80%"> | ||
<img src="./image/load/load3.png" width="40%" alt=""> | ||
|
||
![load2](./image/load/load2.png) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters