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.SequenceFeature;
24 import jalview.datamodel.SequenceI;
25 import jalview.io.gff.SequenceOntologyI;
27 import java.util.ArrayList;
28 import java.util.List;
30 import com.stevesoft.pat.Regex;
33 * A client to fetch CDNA sequence from Ensembl (i.e. that part of the genomic
34 * sequence that is transcribed to RNA, but not necessarily translated to
40 public class EnsemblCdna extends EnsemblSeqProxy
43 * accepts ENST or ENSTG with 11 digits
44 * or ENSMUST or similar for other species
45 * or CCDSnnnnn.nn with at least 3 digits
47 private static final Regex ACCESSION_REGEX = new Regex(
48 "(ENS([A-Z]{3}|)[TG][0-9]{11}$)" + "|" + "(CCDS[0-9.]{3,}$)");
51 * fetch exon features on genomic sequence (to identify the cdna regions)
52 * and cds and variation features (to retain)
54 private static final EnsemblFeatureType[] FEATURES_TO_FETCH = {
55 EnsemblFeatureType.exon, EnsemblFeatureType.cds,
56 EnsemblFeatureType.variation };
59 * Default constructor (to use rest.ensembl.org)
67 * Constructor given the target domain to fetch data from
71 public EnsemblCdna(String d)
77 public String getDbName()
79 return "ENSEMBL (CDNA)";
83 protected EnsemblSeqType getSourceEnsemblType()
85 return EnsemblSeqType.CDNA;
89 public Regex getAccessionValidator()
91 return ACCESSION_REGEX;
95 protected EnsemblFeatureType[] getFeaturesToFetch()
97 return FEATURES_TO_FETCH;
101 * Answers true unless the feature type is 'transcript' (or a sub-type in the
102 * Sequence Ontology).
105 protected boolean retainFeature(SequenceFeature sf, String accessionId)
107 if (isTranscript(sf.getType()))
111 return featureMayBelong(sf, accessionId);
115 * Answers a list of sequence features (if any) whose type is 'exon' (or a
116 * subtype of exon in the Sequence Ontology), and whose Parent is the
117 * transcript we are retrieving
120 protected List<SequenceFeature> getIdentifyingFeatures(SequenceI seq,
123 List<SequenceFeature> result = new ArrayList<>();
124 List<SequenceFeature> sfs = seq.getFeatures()
125 .getFeaturesByOntology(SequenceOntologyI.EXON);
126 for (SequenceFeature sf : sfs)
128 String parentFeature = (String) sf.getValue(PARENT);
129 if (accId.equals(parentFeature))
139 * Parameter object_type=Transcaript added to ensure cdna and not peptide is
140 * returned (JAL-2529)
143 protected String getObjectType()
145 return OBJECT_TYPE_TRANSCRIPT;