@Override
public String getChromosomeId()
{
- // strip of "chromosome:" prefix to chrId
+ // strip off "chromosome:" prefix to chrId
return ref.getAccessionId().substring(
DBRefEntry.CHROMOSOME.length() + 1);
}
if (br != null)
{
String geneId = parseSymbolResponse(br);
- System.out.println(url + " returned " + geneId);
if (geneId != null && !result.contains(geneId))
{
result.add(geneId);
/*
* hack: ignore cross-references to Ensembl protein ids
- * (can't fetch chromosomal mapping for these)
+ * (or use map/translation perhaps?)
* todo: is there an equivalent in EnsemblGenomes?
*/
if (accession.startsWith("ENSP"))