X Tutup
Skip to content

Commit 317bd76

Browse files
committed
Explain symmetry GUI
1 parent 5606056 commit 317bd76

File tree

1 file changed

+24
-12
lines changed

1 file changed

+24
-12
lines changed

structure/symmetry.md

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ Protein Symmetry using BioJava
22
================================================================
33

44
BioJava can be used to detect, analyze, and visualize **symmetry** and
5-
**pseudo-symmetry** in the quaternary (biological assembly) and tertiary
6-
(internal) structural levels.
5+
**pseudo-symmetry** in the **quaternary** (biological assembly) and tertiary
6+
(**internal**) structural levels.
77

88
## Quaternary Symmetry
99

@@ -135,8 +135,11 @@ params.setMultipleAxes(true);
135135
//Run the symmetry analysis - alignment as an output
136136
MultipleAlignment symmetry = ceSymm.align(atoms, params);
137137

138+
//Get the axes of symmetry from the aligner
139+
SymmetryAxes axes = ceSymm.getSymmetryAxes();
140+
138141
//Display the results in jmol with the Symmetry GUI
139-
SymmetryDisplay.display(symmetry, ceSymm.getSymmetryAxes());
142+
SymmetryDisplay.display(symmetry, axes);
140143
```
141144

142145
To enable some extra features in the display, a `SymmetryDisplay`
@@ -157,22 +160,31 @@ point group internal symmetry:
157160

158161
![PDB ID 1U6D](img/symm_internal.png)
159162

163+
#### Hierarchical Symmetry
160164

165+
One additional feature of the **internal symmetry** display is the representation
166+
of hierarchical symmetries and repeats. Contrary to point groups, some structures
167+
have different **levels** of symmetry. That is, the whole strucutre has, e.g. C2
168+
symmetry and, at the same time, each of the two parts has C2 symmetry, but the axes
169+
of both levels are not related by a point group (i.e. they do not cross to a single
170+
point).
161171

172+
A very clear example are the beta-gamma-crystallins, like 4GCR:
162173

174+
![PDB ID 4GCR](img/symm_hierarchy.png)
163175

176+
#### Subunit Multiple Alignment
164177

178+
Another feature of the display is the option to show the **multiple alignment** of
179+
the symmetry related subunits created during the **refinement** process. Search for
180+
the option *Subunit Superposition* in the *symmetry* menu of the Jmol window. For
181+
the previous example the display looks like that:
165182

183+
![PDB ID 4GCR](img/symm_subunits.png)
166184

167-
![PDB ID 4GCR.2](img/symm_subunits.png)
168-
169-
170-
171-
### Hierarchical Symmetry
172-
173-
![PDB ID 4GCR](img/symm_hierarchy.png)
174-
175-
185+
The subunit display highlights the differences and similarities between the symmetry
186+
related subunits of the chain, and helps the user to identify conseved and divergent
187+
regions, with the help of the *Sequence Alignment Panel*.
176188

177189
## Combined Global Symmetry
178190

0 commit comments

Comments
 (0)
X Tutup