2 * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8)
3 * Copyright (C) 2012 J Procter, AM Waterhouse, LM Lui, J Engelhardt, G Barton, M Clamp, S Searle
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 of the License, or (at your option) any later version.
11 * Jalview is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty
13 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along with Jalview. If not, see <http://www.gnu.org/licenses/>.
18 package jalview.ws.dbsources;
21 import com.stevesoft.pat.Regex;
23 import jalview.datamodel.AlignmentI;
24 import jalview.datamodel.DBRefEntry;
25 import jalview.ws.seqfetcher.DbSourceProxy;
28 * TODO: later PFAM is a complex datasource - it could return a tree in addition
29 * to an alignment TODO: create interface to pass alignment properties and tree
30 * back to sequence fetcher
35 abstract public class Pfam extends Xfam implements DbSourceProxy
41 // all extensions of this PFAM source base class are DOMAINDB sources
42 addDbSourceProperty(jalview.datamodel.DBRefSource.DOMAINDB);
43 addDbSourceProperty(jalview.datamodel.DBRefSource.ALIGNMENTDB);
49 * @see jalview.ws.DbSourceProxy#getAccessionSeparator()
51 public String getAccessionSeparator()
53 // TODO Auto-generated method stub
60 * @see jalview.ws.DbSourceProxy#getAccessionValidator()
62 public Regex getAccessionValidator()
64 // TODO Auto-generated method stub
71 * @see jalview.ws.DbSourceProxy#getDbSource() public String getDbSource() { *
72 * this doesn't work - DbSource is key for the hash of DbSourceProxy instances
73 * - 1:many mapping for DbSource to proxy will be lost. * suggest : PFAM is an
74 * 'alignment' source - means proxy is higher level than a sequence source.
75 * return jalview.datamodel.DBRefSource.PFAM; }
81 * @see jalview.ws.DbSourceProxy#getDbSourceProperties() public Hashtable
82 * getDbSourceProperties() {
90 * @see jalview.ws.DbSourceProxy#getDbVersion()
93 public String getDbVersion()
95 // TODO Auto-generated method stub
100 * Returns base URL for selected Pfam alignment type
102 * @return PFAM URL stub for this DbSource
105 protected abstract String getXFAMURL();
110 * @see jalview.ws.DbSourceProxy#getSequenceRecords(java.lang.String[])
112 public AlignmentI getSequenceRecords(String queries) throws Exception
114 // TODO: this is not a perfect implementation. We need to be able to add
115 // individual references to each sequence in each family alignment that's
118 AlignmentI rcds = new jalview.io.FormatAdapter().readFile(getXFAMURL()
119 + queries.trim().toUpperCase(), jalview.io.FormatAdapter.URL,
121 for (int s = 0, sNum = rcds.getHeight(); s < sNum; s++)
123 rcds.getSequenceAt(s).addDBRef(
124 new DBRefEntry(jalview.datamodel.DBRefSource.PFAM,
126 getDbVersion(), queries.trim().toUpperCase()));
127 if (!getDbSource().equals(jalview.datamodel.DBRefSource.PFAM))
128 { // add the specific ref too
129 rcds.getSequenceAt(s).addDBRef(
130 new DBRefEntry(getDbSource(), getDbVersion(), queries
131 .trim().toUpperCase()));
141 * @see jalview.ws.DbSourceProxy#isValidReference(java.lang.String)
143 public boolean isValidReference(String accession)
145 return accession.indexOf("PF") == 0;
149 * public String getDbName() { return "PFAM"; // getDbSource(); }
152 public String getXfamSource()
154 return jalview.datamodel.DBRefSource.PFAM;