X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Fdbsources%2FPfamFull.java;h=25e08fcb4ba870448ef2ac65c29ebf05574bc394;hb=18099e521fde283ebe0f03491876c686333adf81;hp=b8d1020f95016280a3c73eaae3247aa77d7632ca;hpb=1facaef788a7570369f6f0e4fee6c8bce78335ea;p=jalview.git diff --git a/src/jalview/ws/dbsources/PfamFull.java b/src/jalview/ws/dbsources/PfamFull.java index b8d1020..25e08fc 100644 --- a/src/jalview/ws/dbsources/PfamFull.java +++ b/src/jalview/ws/dbsources/PfamFull.java @@ -22,7 +22,7 @@ import jalview.ws.seqfetcher.DbSourceProxy; /** * flyweight class specifying retrieval of Full family alignments from PFAM - * + * */ public class PfamFull extends Pfam implements DbSourceProxy { @@ -31,7 +31,9 @@ public class PfamFull extends Pfam implements DbSourceProxy super(); } - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see jalview.ws.dbsources.Pfam#getPFAMURL() */ protected String getPFAMURL() @@ -39,20 +41,24 @@ public class PfamFull extends Pfam implements DbSourceProxy return "http://pfam.sanger.ac.uk/family/alignment/download/format?alnType=full&format=stockholm&order=t&case=l&gaps=default&entry="; } - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see jalview.ws.seqfetcher.DbSourceProxy#getDbName() */ public String getDbName() { return "PFAM (Full)"; } + public String getDbSource() { return getDbName(); // so we have unique DbSource string. } + public String getTestQuery() { - return "PF03760"; + return "PF03760"; } }