Skip to content

Commit

Permalink
Hooked in Mg atom type detection
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Sep 4, 2011
1 parent c562129 commit 81ce6e5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/org/openscience/cdk/atomtype/CDKAtomTypeMatcher.java
Expand Up @@ -173,6 +173,8 @@ public IAtomType findMatchingAtomType(IAtomContainer atomContainer, IAtom atom)
type = perceivePotassium(atomContainer, atom);
} else if ("Mn".equals(atom.getSymbol())) {
type = perceiveManganese(atomContainer, atom);
} else if ("Mg".equals(atom.getSymbol())) {
type = perceiveMagnesium(atomContainer, atom);
} else if ("Na".equals(atom.getSymbol())) {
type = perceiveSodium(atomContainer, atom);
} else if ("As".equals(atom.getSymbol())) {
Expand Down

0 comments on commit 81ce6e5

Please sign in to comment.