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.ext.ensembl;
23 import jalview.analysis.AlignmentUtils;
24 import jalview.bin.Cache;
25 import jalview.datamodel.DBRefSource;
26 import jalview.ws.seqfetcher.DbSourceProxyImpl;
28 import com.stevesoft.pat.Regex;
31 * A base class for Ensembl sequence fetchers
35 abstract class EnsemblSequenceFetcher extends DbSourceProxyImpl
37 // domain properties lookup keys:
38 protected static final String ENSEMBL_BASEURL = "ENSEMBL_BASEURL";
40 protected static final String ENSEMBL_GENOMES_BASEURL = "ENSEMBL_GENOMES_BASEURL";
42 // domain properties default values:
43 protected static final String DEFAULT_ENSEMBL_BASEURL = "https://rest.ensembl.org";
45 // ensemblgenomes REST service merged to ensembl 9th April 2019
46 protected static final String DEFAULT_ENSEMBL_GENOMES_BASEURL = DEFAULT_ENSEMBL_BASEURL;
49 * accepts ENSG/T/E/P with 11 digits
50 * or ENSMUSP or similar for other species
51 * or CCDSnnnnn.nn with at least 3 digits
53 private static final Regex ACCESSION_REGEX = new Regex(
54 "(ENS([A-Z]{3}|)[GTEP]{1}[0-9]{11}$)" + "|"
55 + "(CCDS[0-9.]{3,}$)");
57 protected final String ensemblGenomesDomain;
59 protected final String ensemblDomain;
61 protected static final String OBJECT_TYPE_TRANSLATION = "Translation";
63 protected static final String OBJECT_TYPE_TRANSCRIPT = "Transcript";
65 protected static final String OBJECT_TYPE_GENE = "Gene";
67 protected static final String PARENT = "Parent";
69 protected static final String JSON_ID = AlignmentUtils.VARIANT_ID; // "id";
71 protected static final String OBJECT_TYPE = "object_type";
74 * possible values for the 'feature' parameter of the /overlap REST service
75 * @see http://rest.ensembl.org/documentation/info/overlap_id
77 protected enum EnsemblFeatureType
79 gene, transcript, cds, exon, repeat, simple, misc, variation,
80 somatic_variation, structural_variation, somatic_structural_variation,
81 constrained, regulatory
84 private String domain;
89 public EnsemblSequenceFetcher()
92 * the default domain names may be overridden in .jalview_properties;
93 * this allows an easy change from http to https in future if needed
96 .getDefault(ENSEMBL_BASEURL, DEFAULT_ENSEMBL_BASEURL).trim();
97 ensemblGenomesDomain = Cache.getDefault(ENSEMBL_GENOMES_BASEURL,
98 DEFAULT_ENSEMBL_GENOMES_BASEURL).trim();
99 domain = ensemblDomain;
103 public String getDbSource()
105 // NB ensure Uniprot xrefs are canonicalised from "Ensembl" to "ENSEMBL"
106 return DBRefSource.ENSEMBL;
110 public String getAccessionSeparator()
116 * Ensembl accession are ENST + 11 digits for human transcript, ENSG for human
117 * gene. Other species insert 3 letters e.g. ENSMUST..., ENSMUSG...
119 * @see http://www.ensembl.org/Help/View?id=151
122 public Regex getAccessionValidator()
124 return ACCESSION_REGEX;
128 public boolean isValidReference(String accession)
130 return getAccessionValidator().search(accession);
140 * Default test query is a transcript
143 public String getTestQuery()
145 // has CDS on reverse strand:
146 return "ENST00000288602";
147 // ENST00000461457 // forward strand
151 public boolean isDnaCoding()
157 * Returns the domain name to query e.g. http://rest.ensembl.org or
158 * http://rest.ensemblgenomes.org
162 protected String getDomain()
167 protected void setDomain(String d)
169 domain = d == null ? null : d.trim();