JAL-1933 show occupancy in tooltip for row
authorJim Procter <jprocter@issues.jalview.org>
Wed, 3 May 2017 10:56:47 +0000 (11:56 +0100)
committerJim Procter <jprocter@issues.jalview.org>
Wed, 3 May 2017 10:56:47 +0000 (11:56 +0100)
src/jalview/analysis/AAFrequency.java

index 3636b5e..b806355 100755 (executable)
@@ -332,9 +332,9 @@ public class AAFrequency
 
       final int gapped = profile.getNonGapped();
 
-      String description = "";
+      String description = "" + gapped;
 
-      gaprow.annotations[i] = new Annotation(description, description,
+      gaprow.annotations[i] = new Annotation("", description,
               '\0', gapped, jalview.util.ColorUtils.bleachColour(
                       Color.DARK_GRAY, (float) scale * gapped));
     }