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.datamodel;
23 import java.lang.reflect.Field;
24 import java.util.ArrayList;
25 import java.util.List;
28 * Defines internal constants for unambiguous annotation of DbRefEntry source
29 * strings and describing the data retrieved from external database sources (see
30 * jalview.ws.DbSourcProxy) <br/>
31 * TODO: replace with ontology to allow recognition of particular attributes
32 * (e.g. protein coding, alignment (ortholog db, paralog db, domain db),
33 * genomic, transcriptomic, 3D structure providing (PDB, MODBASE, etc) ..).
38 public class DBRefSource
41 * UNIPROT Accession Number
43 public static final String UNIPROT = "UNIPROT";
48 public static final String UP_NAME = "UNIPROT_NAME".toUpperCase();
51 * Uniprot Knowledgebase/TrEMBL as served from EMBL protein products.
53 public static final String UNIPROTKB = "UniProtKB/TrEMBL".toUpperCase();
55 public static final String EMBLCDSProduct = "EMBLCDSProtein"
61 public static final String PDB = "PDB";
66 public static final String EMBL = "EMBL";
71 public static final String EMBLCDS = "EMBLCDS";
76 public static final String PFAM = "PFAM";
81 public static final String RFAM = "RFAM";
86 public static final String GENEDB = "GeneDB".toUpperCase();
91 public static final String ENSEMBL = "ENSEMBL";
93 public static final String ENSEMBLGENOMES = "ENSEMBLGENOMES";
96 * List of databases whose sequences might have coding regions annotated
98 public static final String[] DNACODINGDBS = { EMBL, EMBLCDS, GENEDB,
99 ENSEMBL, ENSEMBLGENOMES };
101 public static final String[] CODINGDBS = { EMBLCDS, GENEDB, ENSEMBL };
103 public static final String[] PROTEINDBS = { UNIPROT, UNIPROTKB,
104 EMBLCDSProduct, ENSEMBL }; // Ensembl ENSP* entries are protein
106 public static String[] allSources()
108 List<String> src = new ArrayList<>();
109 for (Field f : DBRefSource.class.getFields())
111 if (String.class.equals(f.getType()))
115 src.add((String) f.get(null));
116 } catch (Exception x)
122 return src.toArray(new String[0]);