JAL-2079 allow prefix+<XFAMID>+suffix type URL signature
authorJim Procter <jprocter@issues.jalview.org>
Tue, 26 Apr 2016 15:53:34 +0000 (16:53 +0100)
committerJim Procter <jprocter@issues.jalview.org>
Tue, 26 Apr 2016 16:42:41 +0000 (17:42 +0100)
src/jalview/ws/dbsources/Xfam.java

index 26c9997..b70beff 100644 (file)
@@ -55,7 +55,9 @@ public abstract class Xfam extends DbSourceProxyImpl
     startQuery();
     // TODO: trap HTTP 404 exceptions and return null
     AlignmentI rcds = new FormatAdapter().readFile(getXFAMURL()
-            + queries.trim().toUpperCase(), FormatAdapter.URL, "STH");
+            + queries.trim().toUpperCase() + getXFAMURLSUFFIX(),
+            jalview.io.FormatAdapter.URL,
+            "STH");
     for (int s = 0, sNum = rcds.getHeight(); s < sNum; s++)
     {
       rcds.getSequenceAt(s).addDBRef(new DBRefEntry(getXfamSource(),
@@ -81,4 +83,13 @@ public abstract class Xfam extends DbSourceProxyImpl
     return true;
   }
 
+   * default suffix to append the retrieval URL for this source.
+   * 
+   * @return "" for most Xfam sources
+   */
+  public String getXFAMURLSUFFIX()
+  {
+    return "";
+  }
+
 }