JAL-1919 PDBfile and JmolParser refactor
[jalview.git] / src / MCview / Atom.java
index 894984a..1e7f973 100755 (executable)
@@ -20,6 +20,8 @@
  */
 package MCview;
 
+import jalview.schemes.ResidueProperties;
+
 import java.awt.Color;
 
 public class Atom
@@ -44,6 +46,8 @@ public class Atom
 
   public int type;
 
+  public char ss;
+
   Color color = Color.lightGray;
 
   public String chain;
@@ -73,6 +77,8 @@ public class Atom
     name = str.substring(12, 15).trim();
 
     resName = str.substring(17, 20);
+    // JAL-1828 treat MSE Selenomethionine as MET (etc)
+    resName = ResidueProperties.getCanonicalAminoAcid(resName);
 
     chain = str.substring(21, 22);