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.datamodel.AlignmentI;
24 import jalview.datamodel.DBRefSource;
25 import jalview.datamodel.GeneLociI;
26 import jalview.datamodel.GeneLocus;
27 import jalview.datamodel.Mapping;
28 import jalview.util.MapList;
30 import java.io.IOException;
31 import java.net.MalformedURLException;
33 import java.util.ArrayList;
34 import java.util.Collections;
35 import java.util.Iterator;
36 import java.util.List;
39 import org.json.simple.parser.ParseException;
42 * A client for the Ensembl REST service /map endpoint, to convert from
43 * coordinates of one genome assembly to another.
45 * Note that species and assembly identifiers passed to this class must be valid
46 * in Ensembl. They are not case sensitive.
49 * @see https://rest.ensembl.org/documentation/info/assembly_map
50 * @see https://rest.ensembl.org/info/assembly/human?content-type=text/xml
51 * @see https://rest.ensembl.org/info/species?content-type=text/xml
53 public class EnsemblMap extends EnsemblRestClient
55 private static final String MAPPED = "mapped";
57 private static final String MAPPINGS = "mappings";
59 private static final String CDS = "cds";
61 private static final String CDNA = "cdna";
64 * Default constructor (to use rest.ensembl.org)
72 * Constructor given the target domain to fetch data from
76 public EnsemblMap(String domain)
82 public String getDbName()
84 return DBRefSource.ENSEMBL;
88 public AlignmentI getSequenceRecords(String queries) throws Exception
90 return null; // not used
94 * Constructs a URL of the format <code>
95 * http://rest.ensembl.org/map/human/GRCh38/17:45051610..45109016:1/GRCh37?content-type=application/json
105 * @throws MalformedURLException
107 protected URL getAssemblyMapUrl(String species, String chromosome,
108 String fromRef, String toRef, int startPos, int endPos)
109 throws MalformedURLException
112 * start-end might be reverse strand - present forwards to the service
114 boolean forward = startPos <= endPos;
115 int start = forward ? startPos : endPos;
116 int end = forward ? endPos : startPos;
117 String strand = forward ? "1" : "-1";
118 String url = String.format(
119 "%s/map/%s/%s/%s:%d..%d:%s/%s?content-type=application/json",
120 getDomain(), species, fromRef, chromosome, start, end, strand,
126 protected boolean useGetRequest()
132 protected URL getUrl(List<String> ids) throws MalformedURLException
134 return null; // not used
138 * Calls the REST /map service to get the chromosomal coordinates (start/end)
139 * in 'toRef' that corresponding to the (start/end) queryRange in 'fromRef'
147 * @see http://rest.ensemblgenomes.org/documentation/info/assembly_map
149 public int[] getAssemblyMapping(String species, String chromosome,
150 String fromRef, String toRef, int[] queryRange)
155 url = getAssemblyMapUrl(species, chromosome, fromRef, toRef,
156 queryRange[0], queryRange[1]);
157 return (parseAssemblyMappingResponse(url));
158 } catch (Throwable t)
160 jalview.bin.Console.outPrintln("Error calling " + url + ": " + t.getMessage());
166 * Parses the JSON response from the /map/<species>/ REST service. The
167 * format is (with some fields omitted)
172 * "original": {"end":45109016,"start":45051610},
173 * "mapped" : {"end":43186384,"start":43128978}
180 @SuppressWarnings("unchecked")
181 protected int[] parseAssemblyMappingResponse(URL url)
187 Iterator<Object> rvals = (Iterator<Object>) getJSON(url, null, -1,
188 MODE_ITERATOR, MAPPINGS);
193 while (rvals.hasNext())
195 // todo check for "mapped"
196 Map<String, Object> val = (Map<String, Object>) rvals.next();
197 Map<String, Object> mapped = (Map<String, Object>) val.get(MAPPED);
198 int start = Integer.parseInt(mapped.get("start").toString());
199 int end = Integer.parseInt(mapped.get("end").toString());
200 String strand = mapped.get("strand").toString();
201 if ("1".equals(strand))
203 result = new int[] { start, end };
207 result = new int[] { end, start };
210 } catch (IOException | ParseException | NumberFormatException e)
218 * Calls the REST /map/cds/id service, and returns a DBRefEntry holding the
219 * returned chromosomal coordinates, or returns null if the call fails
222 * e.g. Ensembl, EnsemblMetazoa
224 * e.g. ENST00000592782, Y55B1AR.1.1
229 public GeneLociI getCdsMapping(String division, String accession,
232 return getIdMapping(division, accession, start, end, CDS);
236 * Calls the REST /map/cdna/id service, and returns a DBRefEntry holding the
237 * returned chromosomal coordinates, or returns null if the call fails
240 * e.g. Ensembl, EnsemblMetazoa
242 * e.g. ENST00000592782, Y55B1AR.1.1
247 public GeneLociI getCdnaMapping(String division, String accession,
250 return getIdMapping(division, accession, start, end, CDNA);
253 GeneLociI getIdMapping(String division, String accession, int start,
254 int end, String cdsOrCdna)
259 String domain = new EnsemblInfo().getDomain(division);
262 url = getIdMapUrl(domain, accession, start, end, cdsOrCdna);
263 return (parseIdMappingResponse(url, accession, domain));
266 } catch (Throwable t)
268 jalview.bin.Console.outPrintln("Error calling " + url + ": " + t.getMessage());
274 * Constructs a URL to the /map/cds/<id> or /map/cdna/<id> REST service. The
275 * REST call is to either ensembl or ensemblgenomes, as determined from the
276 * division, e.g. Ensembl or EnsemblProtists.
284 * @throws MalformedURLException
286 URL getIdMapUrl(String domain, String accession, int start, int end,
287 String cdsOrCdna) throws MalformedURLException
289 String url = String.format(
290 "%s/map/%s/%s/%d..%d?include_original_region=1&content-type=application/json",
291 domain, cdsOrCdna, accession, start, end);
296 * Parses the JSON response from the /map/cds/ or /map/cdna REST service. The
302 * {"assembly_name":"TAIR10","end":2501311,"seq_region_name":"1","gap":0,
303 * "strand":-1,"coord_system":"chromosome","rank":0,"start":2501114},
304 * {"assembly_name":"TAIR10","end":2500815,"seq_region_name":"1","gap":0,
305 * "strand":-1,"coord_system":"chromosome","rank":0,"start":2500714}
315 @SuppressWarnings("unchecked")
316 GeneLociI parseIdMappingResponse(URL url, String accession, String domain)
321 Iterator<Object> rvals = (Iterator<Object>) getJSON(url, null, -1,
322 MODE_ITERATOR, MAPPINGS);
327 String assembly = null;
328 String chromosome = null;
330 List<int[]> regions = new ArrayList<>();
332 while (rvals.hasNext())
334 Map<String, Object> val = (Map<String, Object>) rvals.next();
335 Map<String, Object> original = (Map<String, Object>) val
337 fromEnd = Integer.parseInt(original.get("end").toString());
339 Map<String, Object> mapped = (Map<String, Object>) val.get(MAPPED);
340 int start = Integer.parseInt(mapped.get("start").toString());
341 int end = Integer.parseInt(mapped.get("end").toString());
342 String ass = mapped.get("assembly_name").toString();
343 if (assembly != null && !assembly.equals(ass))
345 jalview.bin.Console.errPrintln(
346 "EnsemblMap found multiple assemblies - can't resolve");
350 String chr = mapped.get("seq_region_name").toString();
351 if (chromosome != null && !chromosome.equals(chr))
353 jalview.bin.Console.errPrintln(
354 "EnsemblMap found multiple chromosomes - can't resolve");
358 String strand = mapped.get("strand").toString();
359 if ("-1".equals(strand))
361 regions.add(new int[] { end, start });
365 regions.add(new int[] { start, end });
370 * processed all mapped regions on chromosome, assemble the result,
371 * having first fetched the species id for the accession
373 final String species = new EnsemblLookup(domain)
374 .getSpecies(accession);
375 final String as = assembly;
376 final String chr = chromosome;
377 List<int[]> fromRange = Collections
378 .singletonList(new int[]
380 Mapping mapping = new Mapping(new MapList(fromRange, regions, 1, 1));
381 return new GeneLocus(species == null ? "" : species, as, chr,
383 } catch (IOException | ParseException | NumberFormatException e)