JAL-845 cDNA mapping: select on sequence translation instead of name
[jalview.git] / src / jalview / schemes / ResidueProperties.java
index 4bb246a..c11423c 100755 (executable)
@@ -675,7 +675,7 @@ public class ResidueProperties
 
   public static Vector Phe = new Vector();
 
-  public static Vector STOP = new Vector();
+  public static List<String> STOP = new ArrayList<String>();
 
   public static String START = "ATG";
 
@@ -1099,9 +1099,9 @@ public class ResidueProperties
     Gly.addElement("GGC");
     Gly.addElement("GGT");
 
-    STOP.addElement("TGA");
-    STOP.addElement("TAA");
-    STOP.addElement("TAG");
+    STOP.add("TGA");
+    STOP.add("TAA");
+    STOP.add("TAG");
 
     Trp.addElement("TGG");