Merge remote-tracking branch 'origin/develop' into
[jalview.git] / src / jalview / datamodel / AlignmentAnnotation.java
index e8dbeee..1594f2b 100755 (executable)
@@ -1494,4 +1494,13 @@ public class AlignmentAnnotation
   {
     return counter++;
   }
+
+  /**
+   * 
+   * @return true for rows that have a range of values in their annotation set
+   */
+  public boolean isQuantitative()
+  {
+    return graphMin < graphMax;
+  }
 }