Merge branch 'releases/Release_2_10_Branch' into develop
[jalview.git] / src / jalview / analysis / Conservation.java
index 711710b..75dec63 100755 (executable)
@@ -558,8 +558,10 @@ public class Conservation
       {
         tot = 0;
         xx = new double[24];
-        seqNum = (j < lengths[k]) ? seqNums.elementAt(k)[j + 1]
-                : 23; // Sequence, or gap at the end
+        seqNum = (j < lengths[k]) ? seqNums.elementAt(k)[j + 1] : 23; // Sequence,
+                                                                      // or gap
+                                                                      // at the
+                                                                      // end
 
         // This is a loop over r
         for (i = 0; i < 23; i++)
@@ -741,12 +743,12 @@ public class Conservation
     Conservation cons = new Conservation(name, threshold, seqs, start, end);
     cons.calculate();
     cons.verdict(posOrNeg, consPercGaps);
-    
+
     if (calcQuality)
     {
       cons.findQuality();
     }
-    
+
     return cons;
   }
 }