JAL-4199 Fix slivka client to parse feature fileters
[jalview.git] / src / jalview / ws2 / client / slivka / SlivkaWSClient.java
index 7dcdae1..477bc34 100644 (file)
@@ -272,7 +272,8 @@ class SlivkaAnnotationWSClient extends SlivkaWSClient
       {
         FeaturesFile ff = new FeaturesFile(f.getContentUrl().toString(),
             DataSourceType.URL);
-        featPresent = ff.parse(aln, colours, true);
+        // TODO: determine if relaxed id matching is T/F
+        featPresent = ff.parse(aln, colours, filters, false, true);
         if (featPresent)
           Console.debug(format("loaded features for %s", service.getId()));
       }