JAL-4124 MappableContactMatrix equivalence and hashCode ensuring non-redundant set...
[jalview.git] / src / jalview / ws / dbsources / Rfam.java
index dba3e31..12f2d27 100644 (file)
@@ -22,6 +22,7 @@ package jalview.ws.dbsources;
 
 import jalview.bin.Cache;
 import jalview.datamodel.DBRefSource;
+import jalview.util.Platform;
 
 import com.stevesoft.pat.Regex;
 
@@ -34,12 +35,17 @@ abstract public class Rfam extends Xfam
 {
   static final String RFAM_BASEURL_KEY = "RFAM_BASEURL";
 
-  private static final String DEFAULT_RFAM_BASEURL = "https://rfam.xfam.org";
+  private static final String DEFAULT_RFAM_BASEURL = "https://rfam.org";
+
+  static
+  {
+    Platform.addJ2SDirectDatabaseCall(DEFAULT_RFAM_BASEURL);
+  }
 
   /*
    * append to URLs to retrieve as a gzipped file
    */
-  public static final String GZIPPED = "?gz=1&download=1";
+  protected static final String GZIPPED = "?gzip=1&download=1";
 
   @Override
   protected String getURLPrefix()