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 com.stevesoft.pat.Regex;
22 import jalview.ws.seqfetcher.DbSourceProxy;
25 * Contains methods for fetching sequences from Rfam database
27 * @author Lauren Michelle Lui
29 abstract public class Rfam extends Xfam implements DbSourceProxy
35 // all extensions of this RFAM source base class are DOMAINDB sources
36 addDbSourceProperty(jalview.datamodel.DBRefSource.DOMAINDB);
37 addDbSourceProperty(jalview.datamodel.DBRefSource.ALIGNMENTDB);
43 * @see jalview.ws.DbSourceProxy#getAccessionSeparator() Left here for
44 * consistency with Pfam class
46 public String getAccessionSeparator()
48 // TODO Auto-generated method stub
55 * @see jalview.ws.DbSourceProxy#getAccessionValidator() * Left here for
57 public Regex getAccessionValidator()
59 // TODO Auto-generated method stub
66 * Left here for consistency with Pfam class
68 * @see jalview.ws.DbSourceProxy#getDbSource() public String getDbSource() { *
69 * this doesn't work - DbSource is key for the hash of DbSourceProxy instances
70 * - 1:many mapping for DbSource to proxy will be lost. * suggest : RFAM is an
71 * 'alignment' source - means proxy is higher level than a sequence source.
72 * return jalview.datamodel.DBRefSource.RFAM; }
78 * @see jalview.ws.DbSourceProxy#getDbVersion()
81 public String getDbVersion()
83 // TODO Auto-generated method stub
88 * Returns base URL for selected Rfam alignment type
90 * @return RFAM URL stub for this DbSource
93 protected abstract String getXFAMURL();
98 * @see jalview.ws.DbSourceProxy#isValidReference(java.lang.String)
100 public boolean isValidReference(String accession)
102 return accession.indexOf("RF") == 0;
108 * @see jalview.ws.dbsources.Xfam#getXfamSource()
110 public String getXfamSource()
112 return jalview.datamodel.DBRefSource.RFAM;