fix for JAL-917 - ensure all sequence strings are made uppercase before alignment
[jalview.git] / src / jalview / analysis / AlignSeq.java
index 28c6283..a27c51b 100755 (executable)
@@ -143,7 +143,7 @@ public class AlignSeq
   public AlignSeq(SequenceI s1, String string1, SequenceI s2,
           String string2, String type)
   {
-    SeqInit(s1, string1, s2, string2, type);
+    SeqInit(s1, string1.toUpperCase(), s2, string2.toUpperCase(), type);
   }
 
   /**