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;
20 import jalview.datamodel.AlignmentI;
21 import jalview.datamodel.DBRefEntry;
22 import jalview.ws.seqfetcher.DbSourceProxyImpl;
25 * Acts as a superclass for the Rfam and Pfam classes
27 * @author Lauren Michelle Lui
30 public abstract class Xfam extends DbSourceProxyImpl
38 protected abstract String getXFAMURL();
40 public abstract String getDbVersion();
42 abstract String getXfamSource();
44 public AlignmentI getSequenceRecords(String queries) throws Exception
46 // TODO: this is not a perfect implementation. We need to be able to add
47 // individual references to each sequence in each family alignment that's
50 // TODO: trap HTTP 404 exceptions and return null
51 AlignmentI rcds = new jalview.io.FormatAdapter().readFile(getXFAMURL()
52 + queries.trim().toUpperCase(), jalview.io.FormatAdapter.URL,
54 for (int s = 0, sNum = rcds.getHeight(); s < sNum; s++)
56 rcds.getSequenceAt(s).addDBRef(new DBRefEntry(getXfamSource(),
58 getDbVersion(), queries.trim().toUpperCase()));
59 if (!getDbSource().equals(getXfamSource()))
60 { // add the specific ref too
61 rcds.getSequenceAt(s).addDBRef(
62 new DBRefEntry(getDbSource(), getDbVersion(), queries
63 .trim().toUpperCase()));