Skip to content

Commit e36df01

Browse files
committed
Fix typos in structural alignment chapter
1 parent d46c3f2 commit e36df01

1 file changed

Lines changed: 7 additions & 10 deletions

File tree

structure/symmetry.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -114,11 +114,8 @@ are defined and a **multiple alignment** is created. This process can be thought
114114
divide the chain into other subchains, and then superimposing each subchain to each other to
115115
create a multiple alignment of the subunits, respecting the symmetry axes.
116116

117-
The **internal symmetry** detection algorithm is implemented in the biojava class
118-
[CeSymm](http://www.biojava.org/docs/api/org/biojava/nbio/structure/symmetry/internal/CeSymm).
119-
It implements both [Structural Alignment](alignment.md) interfaces, so it works programatically
120-
like any of the structural alignment algorithms, and returns one of the structure alignment
121-
[Data Models](alignment-data-model.md).
117+
BioJava Class: [org.biojava.nbio.structure.symmetry.internal.CeSymm]
118+
(http://www.biojava.org/docs/api/org/biojava/nbio/structure/symmetry/internal/CeSymm).
122119

123120
```java
124121
//Prepare the atom input, in a List with a single array
@@ -136,7 +133,7 @@ params.setOptimization(true);
136133
params.setMultipleAxes(true);
137134

138135
//Run the symmetry analysis - alignment as an output
139-
MultipleAlignment symmetry = ceSymm.align(atoms, params);
136+
MultipleAlignment symmetry = ceSymm.analyze(atoms, params);
140137

141138
//Get the axes of symmetry from the aligner
142139
SymmetryAxes axes = ceSymm.getSymmetryAxes();
@@ -146,9 +143,9 @@ SymmetryDisplay.display(symmetry, axes);
146143
```
147144

148145
To enable some extra features in the display, a `SymmetryDisplay`
149-
class has been created, although the `StrucutreAlignmentDisplay`
150-
and `MultipleAlignmentDisplay` methods can also be used for that
151-
purpose (they will not show symmetry axes or symmetry menus).
146+
class has been created, although the `MultipleAlignmentDisplay` method
147+
can also be used for that purpose (it will not show symmetry axes or
148+
symmetry menus).
152149

153150
Lastly, the `SymmetryGUI` class in the **structure-gui** package
154151
provides a GUI to trigger internal symmetry analysis, equivalent
@@ -203,7 +200,7 @@ below:
203200

204201
![PDB ID 1VYM](img/symm_combined.png)
205202

206-
This results can give hints about the function and evolution of proteins and biological
203+
These results can give hints about the function and evolution of proteins and biological
207204
structures.
208205

209206
<!--automatically generated footer-->

0 commit comments

Comments
 (0)