update author list in license for (JAL-826)
[jalview.git] / src / jalview / ws / dbsources / Rfam.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7)
3  * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, G Barton, M Clamp, S Searle
4  * 
5  * This file is part of Jalview.
6  * 
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.
10  * 
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.
15  * 
16  * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 package jalview.ws.dbsources;
19
20 import com.stevesoft.pat.Regex;
21
22 import jalview.ws.seqfetcher.DbSourceProxy;
23
24 /**
25  * Contains methods for fetching sequences from Rfam database
26  * 
27  * @author Lauren Michelle Lui
28  */
29 abstract public class Rfam extends Xfam implements DbSourceProxy
30 {
31
32   public Rfam()
33   {
34     super();
35     // all extensions of this RFAM source base class are DOMAINDB sources
36     addDbSourceProperty(jalview.datamodel.DBRefSource.DOMAINDB);
37   }
38
39   /*
40    * (non-Javadoc)
41    * 
42    * @see jalview.ws.DbSourceProxy#getAccessionSeparator() Left here for
43    * consistency with Pfam class
44    */
45   public String getAccessionSeparator()
46   {
47     // TODO Auto-generated method stub
48     return null;
49   }
50
51   /*
52    * (non-Javadoc)
53    * 
54    * @see jalview.ws.DbSourceProxy#getAccessionValidator() * Left here for
55    */
56   public Regex getAccessionValidator()
57   {
58     // TODO Auto-generated method stub
59     return null;
60   }
61
62   /*
63    * (non-Javadoc)
64    * 
65    * Left here for consistency with Pfam class
66    * 
67    * @see jalview.ws.DbSourceProxy#getDbSource() public String getDbSource() { *
68    * this doesn't work - DbSource is key for the hash of DbSourceProxy instances
69    * - 1:many mapping for DbSource to proxy will be lost. * suggest : RFAM is an
70    * 'alignment' source - means proxy is higher level than a sequence source.
71    * return jalview.datamodel.DBRefSource.RFAM; }
72    */
73
74   /*
75    * (non-Javadoc)
76    * 
77    * @see jalview.ws.DbSourceProxy#getDbVersion()
78    */
79   @Override
80   public String getDbVersion()
81   {
82     // TODO Auto-generated method stub
83     return null;
84   }
85
86   /**Returns base URL for selected Rfam alignment type
87    * 
88    * @return RFAM URL stub for this DbSource
89    */
90   @Override
91   protected abstract String getXFAMURL();
92
93   /*
94    * (non-Javadoc)
95    * 
96    * @see jalview.ws.DbSourceProxy#isValidReference(java.lang.String)
97    */
98   public boolean isValidReference(String accession)
99   {
100     return accession.indexOf("RF") == 0;
101   }
102
103   /* (non-Javadoc)
104    * @see jalview.ws.dbsources.Xfam#getXfamSource()
105    */
106   public String getXfamSource()
107   {
108     return jalview.datamodel.DBRefSource.RFAM;
109   }
110
111 }