/*
* Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
* Copyright (C) $$Year-Rel$$ The Jalview Authors
*
* This file is part of Jalview.
*
* Jalview is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* Jalview is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Jalview. If not, see .
* The Jalview Authors are detailed in the 'AUTHORS' file.
*/
package jalview.ext.ensembl;
import jalview.datamodel.AlignmentI;
import jalview.datamodel.DBRefSource;
import jalview.datamodel.GeneLociI;
import jalview.datamodel.GeneLocus;
import jalview.datamodel.Mapping;
import jalview.util.MapList;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import org.json.simple.parser.ParseException;
/**
* A client for the Ensembl REST service /map endpoint, to convert from
* coordinates of one genome assembly to another.
*
* Note that species and assembly identifiers passed to this class must be valid
* in Ensembl. They are not case sensitive.
*
* @author gmcarstairs
* @see https://rest.ensembl.org/documentation/info/assembly_map
* @see https://rest.ensembl.org/info/assembly/human?content-type=text/xml
* @see https://rest.ensembl.org/info/species?content-type=text/xml
*/
public class EnsemblMap extends EnsemblRestClient
{
private static final String MAPPED = "mapped";
private static final String MAPPINGS = "mappings";
private static final String CDS = "cds";
private static final String CDNA = "cdna";
/**
* Default constructor (to use rest.ensembl.org)
*/
public EnsemblMap()
{
super();
}
/**
* Constructor given the target domain to fetch data from
*
* @param
*/
public EnsemblMap(String domain)
{
super(domain);
}
@Override
public String getDbName()
{
return DBRefSource.ENSEMBL;
}
@Override
public AlignmentI getSequenceRecords(String queries) throws Exception
{
return null; // not used
}
/**
* Constructs a URL of the format
* http://rest.ensembl.org/map/human/GRCh38/17:45051610..45109016:1/GRCh37?content-type=application/json
*
*
* @param species
* @param chromosome
* @param fromRef
* @param toRef
* @param startPos
* @param endPos
* @return
* @throws MalformedURLException
*/
protected URL getAssemblyMapUrl(String species, String chromosome,
String fromRef, String toRef, int startPos, int endPos)
throws MalformedURLException
{
/*
* start-end might be reverse strand - present forwards to the service
*/
boolean forward = startPos <= endPos;
int start = forward ? startPos : endPos;
int end = forward ? endPos : startPos;
String strand = forward ? "1" : "-1";
String url = String.format(
"%s/map/%s/%s/%s:%d..%d:%s/%s?content-type=application/json",
getDomain(), species, fromRef, chromosome, start, end, strand,
toRef);
return new URL(url);
}
@Override
protected boolean useGetRequest()
{
return true;
}
@Override
protected URL getUrl(List ids) throws MalformedURLException
{
return null; // not used
}
/**
* Calls the REST /map service to get the chromosomal coordinates (start/end)
* in 'toRef' that corresponding to the (start/end) queryRange in 'fromRef'
*
* @param species
* @param chromosome
* @param fromRef
* @param toRef
* @param queryRange
* @return
* @see http://rest.ensemblgenomes.org/documentation/info/assembly_map
*/
public int[] getAssemblyMapping(String species, String chromosome,
String fromRef, String toRef, int[] queryRange)
{
URL url = null;
try
{
url = getAssemblyMapUrl(species, chromosome, fromRef, toRef,
queryRange[0], queryRange[1]);
return (parseAssemblyMappingResponse(url));
} catch (Throwable t)
{
jalview.bin.Console.outPrintln("Error calling " + url + ": " + t.getMessage());
return null;
}
}
/**
* Parses the JSON response from the /map/<species>/ REST service. The
* format is (with some fields omitted)
*
*