Merge branch 'develop' into features/JAL-2360colourSchemeApplicability
[jalview.git] / src / jalview / schemes / RNAHelicesColour.java
index aacf557..056a167 100644 (file)
@@ -230,17 +230,8 @@ public class RNAHelicesColour extends ResidueColourScheme
     }
 
     /*
-     * check dataset
+     * not currently supporting this option for group annotation / colouring
      */
-    AnnotatedCollectionI context = ac.getContext();
-    if (context == null)
-    {
-      context = ac;
-    }
-    if (context instanceof AlignmentI)
-    {
-      return ((AlignmentI) context).hasRNAStructure();
-    }
     return false;
   }
 
@@ -249,4 +240,10 @@ public class RNAHelicesColour extends ResidueColourScheme
   {
     return JalviewColourScheme.RNAHelices.toString();
   }
+
+  @Override
+  public boolean isSimple()
+  {
+    return false;
+  }
 }