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.bin.Cache;
24 import jalview.datamodel.AlignmentI;
25 import jalview.datamodel.GeneLociI;
26 import jalview.util.MapList;
28 import java.io.BufferedReader;
29 import java.io.IOException;
30 import java.net.MalformedURLException;
32 import java.util.Arrays;
33 import java.util.Collections;
34 import java.util.List;
36 import org.json.simple.JSONObject;
37 import org.json.simple.parser.JSONParser;
38 import org.json.simple.parser.ParseException;
41 * A client for the Ensembl /lookup REST endpoint, used to find the gene
42 * identifier given a gene, transcript or protein identifier, or to extract the
43 * species or chromosomal coordinates from the same service response
47 public class EnsemblLookup extends EnsemblRestClient
49 private static final String SPECIES = "species";
52 * Default constructor (to use rest.ensembl.org)
54 public EnsemblLookup()
60 * Constructor given the target domain to fetch data from
64 public EnsemblLookup(String d)
70 public String getDbName()
76 public AlignmentI getSequenceRecords(String queries) throws Exception
82 protected URL getUrl(List<String> ids) throws MalformedURLException
84 String identifier = ids.get(0);
85 return getUrl(identifier, null);
89 * Gets the url for lookup of the given identifier, optionally with objectType
90 * also specified in the request
96 protected URL getUrl(String identifier, String objectType)
98 String url = getDomain() + "/lookup/id/" + identifier
100 if (objectType != null)
102 url += "&" + OBJECT_TYPE + "=" + objectType;
108 } catch (MalformedURLException e)
115 protected boolean useGetRequest()
121 protected String getRequestMimeType(boolean multipleIds)
123 return "application/json";
127 protected String getResponseMimeType()
129 return "application/json";
133 * Returns the gene id related to the given identifier (which may be for a
134 * gene, transcript or protein)
139 public String getGeneId(String identifier)
141 return getGeneId(identifier, null);
145 * Returns the gene id related to the given identifier (which may be for a
146 * gene, transcript or protein)
152 public String getGeneId(String identifier, String objectType)
154 return parseGeneId(getResult(identifier, objectType));
158 * Parses the JSON response and returns the gene identifier, or null if not
159 * found. If the returned object_type is Gene, returns the id, if Transcript
160 * returns the Parent. If it is Translation (peptide identifier), then the
161 * Parent is the transcript identifier, so we redo the search with this value.
166 protected String parseGeneId(JSONObject val)
168 String geneId = null;
169 String type = val.get(OBJECT_TYPE).toString();
170 if (OBJECT_TYPE_GENE.equalsIgnoreCase(type))
172 // got the gene - just returns its id
173 geneId = val.get(JSON_ID).toString();
175 else if (OBJECT_TYPE_TRANSCRIPT.equalsIgnoreCase(type))
177 // got the transcript - return its (Gene) Parent
178 geneId = val.get(PARENT).toString();
180 else if (OBJECT_TYPE_TRANSLATION.equalsIgnoreCase(type))
182 // got the protein - get its Parent, restricted to type Transcript
183 String transcriptId = val.get(PARENT).toString();
184 geneId = getGeneId(transcriptId, OBJECT_TYPE_TRANSCRIPT);
191 * Calls the Ensembl lookup REST endpoint and retrieves the 'species' for the
192 * given identifier, or null if not found
197 public String getSpecies(String identifier)
199 String species = null;
200 JSONObject json = getResult(identifier, null);
203 Object o = json.get(SPECIES);
206 species = o.toString();
213 * Calls the /lookup/id rest service and returns the response as a JSONObject,
214 * or null if any error
221 protected JSONObject getResult(String identifier, String objectType)
223 List<String> ids = Arrays.asList(new String[] { identifier });
225 BufferedReader br = null;
228 URL url = getUrl(identifier, objectType);
232 br = getHttpResponse(url, ids);
234 return br == null ? null : (JSONObject) (new JSONParser().parse(br));
235 } catch (IOException | ParseException e)
237 System.err.println("Error parsing " + identifier + " lookup response "
247 } catch (IOException e)
256 * Calls the /lookup/id rest service for the given id, and if successful,
257 * parses and returns the gene's chromosomal coordinates
262 public GeneLociI getGeneLoci(String geneId)
264 return parseGeneLoci(getResult(geneId, OBJECT_TYPE_GENE));
268 * Parses the /lookup/id response for species, asssembly_name,
269 * seq_region_name, start, end and returns an object that wraps them, or null
275 GeneLociI parseGeneLoci(JSONObject json)
284 final String species = json.get("species").toString();
285 final String assembly = json.get("assembly_name").toString();
286 final String chromosome = json.get("seq_region_name").toString();
287 String strand = json.get("strand").toString();
288 int start = Integer.parseInt(json.get("start").toString());
289 int end = Integer.parseInt(json.get("end").toString());
290 int fromEnd = end - start + 1;
291 boolean reverseStrand = "-1".equals(strand);
292 int toStart = reverseStrand ? end : start;
293 int toEnd = reverseStrand ? start : end;
294 List<int[]> fromRange = Collections.singletonList(new int[] { 1,
296 List<int[]> toRange = Collections.singletonList(new int[] { toStart,
298 final MapList map = new MapList(fromRange, toRange, 1, 1);
299 return new GeneLociI()
303 public String getSpeciesId()
305 return species == null ? "" : species;
309 public String getAssemblyId()
315 public String getChromosomeId()
321 public MapList getMap()
326 } catch (NullPointerException | NumberFormatException e)
328 Cache.log.error("Error looking up gene loci: " + e.getMessage());