X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fext%2Fensembl%2FEnsemblGenome.java;h=4f59bc59c0aa042d8ecf99e924c98923d24651b7;hb=0b573ed90b14079f7326281f50c0c9cffdace586;hp=20987e188ab2ffbe47bc9abb9ab466cf37de8791;hpb=b8058f3f849f44740a695c83e96bdca3a197af5c;p=jalview.git diff --git a/src/jalview/ext/ensembl/EnsemblGenome.java b/src/jalview/ext/ensembl/EnsemblGenome.java index 20987e1..4f59bc5 100644 --- a/src/jalview/ext/ensembl/EnsemblGenome.java +++ b/src/jalview/ext/ensembl/EnsemblGenome.java @@ -1,6 +1,31 @@ +/* + * 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.datamodel.SequenceI; +import jalview.io.gff.SequenceOntologyI; + +import java.util.ArrayList; +import java.util.List; /** * A client to fetch genomic sequence from Ensembl @@ -74,22 +99,31 @@ public class EnsemblGenome extends EnsemblSeqProxy } /** - * Answers true if the sequence feature type is 'transcript' (or a subtype of - * transcript in the Sequence Ontology), and the ID of the feature is the - * transcript we are retrieving + * Answers a list of sequence features (if any) whose type is 'transcript' (or + * a subtype of transcript in the Sequence Ontology), and whose ID is the + * accession we are retrieving. + *

+ * Note we also include features of type "NMD_transcript_variant", although + * not strictly 'transcript' in the SO, as they used in Ensembl as if they + * were. */ @Override - protected boolean identifiesSequence(SequenceFeature sf, String accId) + protected List getIdentifyingFeatures(SequenceI seq, + String accId) { - if (isTranscript(sf.getType())) + List result = new ArrayList<>(); + List sfs = seq.getFeatures().getFeaturesByOntology( + SequenceOntologyI.TRANSCRIPT, + SequenceOntologyI.NMD_TRANSCRIPT_VARIANT); + for (SequenceFeature sf : sfs) { - String id = (String) sf.getValue(ID); - if (("transcript:" + accId).equals(id)) + String id = (String) sf.getValue(JSON_ID); + if (accId.equals(id)) { - return true; + result.add(sf); } } - return false; + return result; } }