X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fext%2Fensembl%2FEnsemblGenome.java;h=bde3c0f8ad23dc2aa02b25c55554ed4bb292b7eb;hb=17ff1f476e009b3a3c7e892e416edc2a4af8a2bc;hp=6b4a1f67ce035553be2743f97072d4cc94665360;hpb=b03ec66ae6238b44bd20d2403d1157cadc5f0e01;p=jalview.git diff --git a/src/jalview/ext/ensembl/EnsemblGenome.java b/src/jalview/ext/ensembl/EnsemblGenome.java index 6b4a1f6..bde3c0f 100644 --- a/src/jalview/ext/ensembl/EnsemblGenome.java +++ b/src/jalview/ext/ensembl/EnsemblGenome.java @@ -1,8 +1,35 @@ +/* + * 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.SequenceFeature; -import jalview.io.gff.SequenceOntology; +/** + * A client to fetch genomic sequence from Ensembl + * + * TODO: not currently used - delete? + * + * @author gmcarstairs + * + */ public class EnsemblGenome extends EnsemblSeqProxy { /* @@ -13,15 +40,28 @@ public class EnsemblGenome extends EnsemblSeqProxy EnsemblFeatureType.transcript, EnsemblFeatureType.exon, EnsemblFeatureType.cds, EnsemblFeatureType.variation }; + /** + * Default constructor (to use rest.ensembl.org) + */ public EnsemblGenome() { super(); } + /** + * Constructor given the target domain to fetch data from + * + * @param d + */ + public EnsemblGenome(String d) + { + super(d); + } + @Override public String getDbName() { - return "ENSEMBL (Genome)"; + return "ENSEMBL (Genomic)"; } @Override @@ -38,15 +78,19 @@ public class EnsemblGenome extends EnsemblSeqProxy /** * Answers true unless the feature type is 'transcript' (or a sub-type of - * transcript in the Sequence Ontology). Transcript features are only - * retrieved in order to identify the transcript sequence range, and are - * redundant information on the transcript sequence itself. + * transcript in the Sequence Ontology), or has a parent other than the given + * accession id. Transcript features are only retrieved in order to identify + * the transcript sequence range, and are redundant information on the + * transcript sequence itself. */ @Override - protected boolean retainFeature(String type) + protected boolean retainFeature(SequenceFeature sf, String accessionId) { - return !SequenceOntology.getInstance().isA(type, - SequenceOntology.TRANSCRIPT); + if (isTranscript(sf.getType())) + { + return false; + } + return featureMayBelong(sf, accessionId); } /** @@ -57,11 +101,10 @@ public class EnsemblGenome extends EnsemblSeqProxy @Override protected boolean identifiesSequence(SequenceFeature sf, String accId) { - if (SequenceOntology.getInstance().isA(sf.getType(), - SequenceOntology.TRANSCRIPT)) + if (isTranscript(sf.getType())) { - String parentFeature = (String) sf.getValue("ID"); - if (("transcript:" + accId).equals(parentFeature)) + String id = (String) sf.getValue("ID"); + if (("transcript:" + accId).equals(id)) { return true; }