patch fixes JAL-1558
[jalview.git] / src / jalview / analysis / AAFrequency.java
index 08a3f52..d028ade 100755 (executable)
@@ -1,6 +1,6 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8)
- * Copyright (C) 2012 J Procter, AM Waterhouse, LM Lui, J Engelhardt, G Barton, M Clamp, S Searle
+ * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.1)
+ * Copyright (C) 2014 The Jalview Authors
  * 
  * This file is part of Jalview.
  * 
@@ -14,6 +14,7 @@
  * PURPOSE.  See the GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
+ * The Jalview Authors are detailed in the 'AUTHORS' file.
  */
 package jalview.analysis;
 
@@ -182,9 +183,11 @@ public class AAFrequency
       residueHash.put(PID_GAPS, new Float(percentage));
 
       if (nongap>0) {
+        // calculate for non-gapped too
         percentage = ((float) maxCount * 100) / nongap;
-        residueHash.put(PID_NOGAPS, new Float(percentage));
       }
+      residueHash.put(PID_NOGAPS, new Float(percentage));
+      
       result[i] = residueHash;
     }
   }