2 * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2)
3 * Copyright (C) 2014 The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
21 package jalview.ws.dbsources;
23 import com.stevesoft.pat.Regex;
25 import jalview.datamodel.AlignmentI;
26 import jalview.datamodel.DBRefEntry;
27 import jalview.ws.seqfetcher.DbSourceProxy;
30 * TODO: later PFAM is a complex datasource - it could return a tree in addition
31 * to an alignment TODO: create interface to pass alignment properties and tree
32 * back to sequence fetcher
37 abstract public class Pfam extends Xfam implements DbSourceProxy
43 // all extensions of this PFAM source base class are DOMAINDB sources
44 addDbSourceProperty(jalview.datamodel.DBRefSource.DOMAINDB);
45 addDbSourceProperty(jalview.datamodel.DBRefSource.ALIGNMENTDB);
51 * @see jalview.ws.DbSourceProxy#getAccessionSeparator()
53 public String getAccessionSeparator()
55 // TODO Auto-generated method stub
62 * @see jalview.ws.DbSourceProxy#getAccessionValidator()
64 public Regex getAccessionValidator()
66 // TODO Auto-generated method stub
73 * @see jalview.ws.DbSourceProxy#getDbSource() public String getDbSource() { *
74 * this doesn't work - DbSource is key for the hash of DbSourceProxy instances
75 * - 1:many mapping for DbSource to proxy will be lost. * suggest : PFAM is an
76 * 'alignment' source - means proxy is higher level than a sequence source.
77 * return jalview.datamodel.DBRefSource.PFAM; }
83 * @see jalview.ws.DbSourceProxy#getDbSourceProperties() public Hashtable
84 * getDbSourceProperties() {
92 * @see jalview.ws.DbSourceProxy#getDbVersion()
95 public String getDbVersion()
97 // TODO Auto-generated method stub
102 * Returns base URL for selected Pfam alignment type
104 * @return PFAM URL stub for this DbSource
107 protected abstract String getXFAMURL();
112 * @see jalview.ws.DbSourceProxy#getSequenceRecords(java.lang.String[])
114 public AlignmentI getSequenceRecords(String queries) throws Exception
116 // TODO: this is not a perfect implementation. We need to be able to add
117 // individual references to each sequence in each family alignment that's
120 AlignmentI rcds = new jalview.io.FormatAdapter().readFile(getXFAMURL()
121 + queries.trim().toUpperCase(), jalview.io.FormatAdapter.URL,
123 for (int s = 0, sNum = rcds.getHeight(); s < sNum; s++)
125 rcds.getSequenceAt(s).addDBRef(
126 new DBRefEntry(jalview.datamodel.DBRefSource.PFAM,
128 getDbVersion(), queries.trim().toUpperCase()));
129 if (!getDbSource().equals(jalview.datamodel.DBRefSource.PFAM))
130 { // add the specific ref too
131 rcds.getSequenceAt(s).addDBRef(
132 new DBRefEntry(getDbSource(), getDbVersion(), queries
133 .trim().toUpperCase()));
143 * @see jalview.ws.DbSourceProxy#isValidReference(java.lang.String)
145 public boolean isValidReference(String accession)
147 return accession.indexOf("PF") == 0;
151 * public String getDbName() { return "PFAM"; // getDbSource(); }
154 public String getXfamSource()
156 return jalview.datamodel.DBRefSource.PFAM;