From: Mateusz Warowny Date: Wed, 12 Jul 2023 12:48:18 +0000 (+0200) Subject: JAL-4199 Fix slivka client to parse feature fileters X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=84208814e3b7f5c386105252bd489637fab82e37;hp=50315787f6e2696556ee978fc243001b9577c0e3;p=jalview.git JAL-4199 Fix slivka client to parse feature fileters --- diff --git a/src/jalview/ws2/client/slivka/SlivkaWSClient.java b/src/jalview/ws2/client/slivka/SlivkaWSClient.java index 7dcdae1..477bc34 100644 --- a/src/jalview/ws2/client/slivka/SlivkaWSClient.java +++ b/src/jalview/ws2/client/slivka/SlivkaWSClient.java @@ -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())); }