_Sidebar.md
... ...
@@ -23,3 +23,6 @@ Support for Developers
23 23
Hardware Support Notes
24 24
* [SBGrid Recommended Hardware](recommended)
25 25
* [Setup Stereo 3D](stereo)
26
+
27
+WSMR
28
+# [Data Processing After WSMR](wsmr-worked)
usage/_Sidebar.md
... ...
@@ -23,3 +23,6 @@ Support for Developers
23 23
Hardware Support Notes
24 24
* [SBGrid Recommended Hardware](recommended)
25 25
* [Setup Stereo 3D](stereo)
26
+
27
+WSMR
28
+# [Data Processing After WSMR](wsmr-worked)
usage/wsmr-worked.md
... ...
@@ -0,0 +1,47 @@
1
+# Data Processing after WS-MR
2
+
3
+## 1 Verify Results for Search Models
4
+The first follow-up step for a search model resulting from WSMR is to repeat MR locally.
5
+
6
+To download one of the search models; first click the "Load Top 100 Hits" button, click one of the yellow circles in the resulting plot, and then use the download link for the model.
7
+
8
+* * *
9
+![](images/data-processing-after-ws-mr-1.jpg)
10
+* * *
11
+![](images/data-processing-after-ws-mr-2.png)
12
+* * *
13
+
14
+A typical input deck (`MR01.in` for this example) for `phaser` would look something like this (with the paths to your input `MTZ` and `PDB` files adjusted appropriately):
15
+
16
+ ROOT MR01
17
+ MODE MR_AUTO
18
+ HKLIn reflections.mtz
19
+ LABIn F=FP SIGF=SIGFP
20
+ ENSEmble SearchModel PDB model.pdb IDENtity 0.3
21
+ COMPosition PERCENTAGE 0.50
22
+ RESOlution HIGH 3.1
23
+ SEARch ENSEmble SearchModel NUM 1
24
+ SGALternative SELECT ALL
25
+
26
+This can be run with versions of `phaser` distributed with `CCP4` or `PHENIX` (with `phaser < MR01.in > MR01.out` or `phenix.phaser < MR01.in > MR01.out` respectively). The statistics (LLG and Z-scores) from local runs may differ due to differences in `phaser` versions.
27
+
28
+The `SGALternative` card is only necessary if you're checking alternative space-groups.
29
+
30
+## 2 Expand Search
31
+
32
+WSMR searches for a single copy of the search model - however there may be multiple copies of the model in the ASU. If so, the next step is the increase the `NUM` value for the `SEARch` card. When in doubt, it's better to set this too hight rather than too low - `phaser` will stop when unable to locate additional copies.
33
+
34
+## 3 Autobuild
35
+
36
+Once MR has been exhausted (no more copies of the search model can be placed), one possible next step is to use an autobuilder for an initial attempt to correct the sequence of the model.
37
+
38
+Using the `PHENIX` autobuilder:
39
+
40
+`phenix.autobuild reflections.mtz MR_Results.pdb project.fasta nproc=4 > AutoBuild01.out`
41
+
42
+The input model (`MR_Results.pdb`) for the autobuilder is the final result modeles from the initial or expanded MR search.
43
+
44
+The input `MTZ` file should be the original amplitudes (or intensities) used for searching, *not* the results from `phaser`. If phaser was run with the `SGALternative` card, make sure the spacegroup of this `MTZ` matches that of the search solutions.
45
+
46
+The `nproc=4` option should only be used if there are four (or more) available cores - when using the `rebuild_in_place` option, `phenix.autobuild` can't take advantage of more than 4 processors.
47
+