X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Fdbsources%2FXfam.java;h=b83f558a9cb5582ea9ea868fb29000389e8d9a0e;hb=6200addf078b7f7ace90597dc056dafc7fc602c1;hp=b0bea88c21171b42b8c30d81add4b5dadac56b12;hpb=87b75c983d6140e6673aed55f333563f2fd86817;p=jalview.git diff --git a/src/jalview/ws/dbsources/Xfam.java b/src/jalview/ws/dbsources/Xfam.java index b0bea88..b83f558 100644 --- a/src/jalview/ws/dbsources/Xfam.java +++ b/src/jalview/ws/dbsources/Xfam.java @@ -42,7 +42,12 @@ public abstract class Xfam extends DbSourceProxyImpl super(); } - protected abstract String getXFAMURL(); + /** + * the base URL for this Xfam-like service + * + * @return + */ + protected abstract String getURLPrefix(); @Override public abstract String getDbVersion(); @@ -57,33 +62,37 @@ public abstract class Xfam extends DbSourceProxyImpl // retrieved. startQuery(); // TODO: trap HTTP 404 exceptions and return null - String xfamUrl = getXFAMURL() - + queries.trim().toUpperCase() + getXFAMURLSUFFIX(); + String xfamUrl = getURL(queries); if (Cache.log != null) { Cache.log.debug("XFAM URL for retrieval is: " + xfamUrl); } - AlignmentI rcds = new FormatAdapter().readFile(xfamUrl , + AlignmentI rcds = new FormatAdapter().readFile(xfamUrl, DataSourceType.URL, FileFormat.Stockholm); for (int s = 0, sNum = rcds.getHeight(); s < sNum; s++) { rcds.getSequenceAt(s).addDBRef(new DBRefEntry(getXfamSource(), - // getDbSource(), + // getDbSource(), getDbVersion(), queries.trim().toUpperCase())); if (!getDbSource().equals(getXfamSource())) { // add the specific ref too - rcds.getSequenceAt(s).addDBRef( - new DBRefEntry(getDbSource(), getDbVersion(), queries - .trim().toUpperCase())); + rcds.getSequenceAt(s).addDBRef(new DBRefEntry(getDbSource(), + getDbVersion(), queries.trim().toUpperCase())); } } stopQuery(); return rcds; } + String getURL(String queries) + { + return getURLPrefix() + "/family/" + queries.trim().toUpperCase() + + getURLSuffix(); + } + /** * Pfam and Rfam provide alignments */ @@ -98,7 +107,7 @@ public abstract class Xfam extends DbSourceProxyImpl * * @return "" for most Xfam sources */ - public String getXFAMURLSUFFIX() + public String getURLSuffix() { return ""; }