X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Fdbsources%2FXfam.java;h=26291ebf182f75b5526280d545e880db0f85e0f4;hb=4ed4e90803e3a463458410be06b678ff3154937f;hp=26c999752edcaecd776a42e252f36f3005c0d5f7;hpb=409fd993c6e32e999b24082aae107a043a590f8f;p=jalview.git diff --git a/src/jalview/ws/dbsources/Xfam.java b/src/jalview/ws/dbsources/Xfam.java index 26c9997..26291eb 100644 --- a/src/jalview/ws/dbsources/Xfam.java +++ b/src/jalview/ws/dbsources/Xfam.java @@ -20,8 +20,11 @@ */ package jalview.ws.dbsources; +import jalview.bin.Cache; import jalview.datamodel.AlignmentI; import jalview.datamodel.DBRefEntry; +import jalview.io.DataSourceType; +import jalview.io.FileFormat; import jalview.io.FormatAdapter; import jalview.ws.seqfetcher.DbSourceProxyImpl; @@ -54,18 +57,26 @@ public abstract class Xfam extends DbSourceProxyImpl // retrieved. startQuery(); // TODO: trap HTTP 404 exceptions and return null - AlignmentI rcds = new FormatAdapter().readFile(getXFAMURL() - + queries.trim().toUpperCase(), FormatAdapter.URL, "STH"); + String xfamUrl = getXFAMURL() + queries.trim().toUpperCase() + + getXFAMURLSUFFIX(); + + if (Cache.log != null) + { + Cache.log.debug("XFAM URL for retrieval is: " + 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(); @@ -81,4 +92,14 @@ 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 ""; + } + }