2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ 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.seqfetcher;
23 import jalview.api.FeatureSettingsModelI;
24 import jalview.datamodel.AlignmentI;
26 import com.stevesoft.pat.Regex;
29 * generic Reference Retrieval interface for a particular database
30 * source/version as cited in DBRefEntry.
32 * TODO: add/define mechanism for retrieval of Trees and distance matrices from
33 * a database (unify with io)
37 public interface DbSourceProxy
41 * @return source string constant used for this DB source
46 * Short meaningful name for this data source for display in menus or
55 * @return version string for this database.
57 String getDbVersion();
60 * Separator between individual accession queries for a database that allows
61 * multiple IDs to be fetched in a single query. Null implies that only a
62 * single ID can be fetched at a time.
64 * @return string for separating concatenated queries (as individually
65 * validated by the accession validator)
67 String getAccessionSeparator();
70 * Regular expression for checking form of query string understood by this
71 * source. If the Regex includes parenthesis, then the first parenthesis
72 * should yield the same accession string as the one used to annotate the
73 * sequence. This is used to match query strings to returned sequences.
75 * @return null or a validation regex
77 Regex getAccessionValidator();
81 * @return a test/example query that can be used to validate retrieval and
84 String getTestQuery();
87 * Required for sources supporting multiple query retrieval for use with the
88 * DBRefFetcher, which attempts to limit its queries with putative accession
89 * strings for a source to only those that are likely to be valid.
94 boolean isValidReference(String accession);
97 * make one or more queries to the database and attempt to parse the response
101 * - one or more queries for database in expected form
102 * @return null if queries were successful but result was not parsable.
103 * Otherwise, an AlignmentI object containing properly annotated data
104 * (e.g. sequences with accessions for this datasource)
106 * - propagated from underlying transport to database (note -
107 * exceptions are not raised if query not found in database)
110 AlignmentI getSequenceRecords(String queries) throws Exception;
114 * @return true if a query is currently being made
116 boolean queryInProgress();
119 * get the raw reponse from the last set of queries
121 * @return one or more string buffers for each individual query
123 StringBuffer getRawRecords();
126 * Tier for this data source
128 * @return 0 - primary datasource, 1 - das primary source, 2 - secondary
133 * Extracts valid accession strings from a query string. If there is an
134 * accession id validator, returns the the matched region or the first
135 * subgroup match from the matched region; else just returns the whole query.
140 String getAccessionIdFromQuery(String query);
143 * Returns the maximum number of accession ids that can be queried in one
148 int getMaximumQueryCount();
151 * Returns true if the source may provide coding DNA i.e. sequences with
152 * implicit peptide products
156 boolean isDnaCoding();
159 * Answers true if the database is a source of alignments (for example, domain
164 boolean isAlignmentSource();
167 * Returns an (optional) description of the source, suitable for display as a
172 String getDescription();
175 * Returns the preferred feature colour configuration if there is one, else
180 FeatureSettingsModelI getFeatureColourScheme();