Skip to content

Commit 32043de

Browse files
authored
Fix multiple structural alignment example errors
biojava#14
1 parent 7b27dee commit 32043de

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

structure/alignment.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,13 +345,13 @@ StructureAlignment pairwise = StructureAlignmentFactory.getAlgorithm(CeMain.alg
345345
MultipleMcMain multiple = new MultipleMcMain(pairwise);
346346

347347
//Perform the alignment
348-
MultipleAlignment result = algorithm.align(atomArrays);
348+
MultipleAlignment result = multiple.align(atomArrays);
349349

350350
//Output the FASTA sequence alignment
351351
System.out.println(MultipleAlignmentWriter.toFASTA(result));
352352

353353
//Display the results in a 3D view
354-
MultipleAlignmentDisplay.display(result);
354+
MultipleAlignmentJmolDisplay.display(result);
355355
```
356356

357357
## Command-Line Tools

0 commit comments

Comments
 (0)