Skip to content

Commit 93e3e7e

Browse files
jjgaoandreasprlic
authored andcommitted
/* Demo code to run the above methods */
1 parent f4ff456 commit 93e3e7e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

_wikis/BioJava:CookBook3:ModFinder.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public static void main(String[] args) {
6060
`       // identify all modificaitons from PDB:1CAD and print them`
6161
`       String pdbId = "1CAD";`
6262
`       Structure struc = reader.getStructureById(pdbId);`
63-
`       Set`<ModifiedCompound>` mcs = identifyAllModfications(struc)`
63+
`       Set`<ModifiedCompound>` mcs = identifyAllModfications(struc);`
6464
`       for (ModifiedCompound mc : mcs) {`
6565
`           System.out.println(mc.toString());`
6666
`       }`

_wikis/BioJava:CookBook3:ModFinder.mediawiki

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public static void main(String[] args) {
4444
// identify all modificaitons from PDB:1CAD and print them
4545
String pdbId = "1CAD";
4646
Structure struc = reader.getStructureById(pdbId);
47-
Set<ModifiedCompound> mcs = identifyAllModfications(struc)
47+
Set<ModifiedCompound> mcs = identifyAllModfications(struc);
4848
for (ModifiedCompound mc : mcs) {
4949
System.out.println(mc.toString());
5050
}

0 commit comments

Comments
 (0)