X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fext%2Fensembl%2FEnsemblGenomes.java;h=bbd1f265467f1a56328cc7be2535bbe9444a36ce;hb=d5702bf3268c2688e90d645ec635ad5bb5d3a76e;hp=95acf4162eb98f3a91cfa04a743d7c33c30bc47d;hpb=b8058f3f849f44740a695c83e96bdca3a197af5c;p=jalview.git diff --git a/src/jalview/ext/ensembl/EnsemblGenomes.java b/src/jalview/ext/ensembl/EnsemblGenomes.java index 95acf41..bbd1f26 100644 --- a/src/jalview/ext/ensembl/EnsemblGenomes.java +++ b/src/jalview/ext/ensembl/EnsemblGenomes.java @@ -1,6 +1,25 @@ +/* + * 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; - /** * A class to behave much like EnsemblGene but referencing the ensemblgenomes * domain and data @@ -20,21 +39,24 @@ public class EnsemblGenomes extends EnsemblGene } @Override - public boolean isGeneIdentifier(String query) + public String getDbName() { - return true; + return "EnsemblGenomes"; } @Override - public String getDbName() + public String getTestQuery() { - return "EnsemblGenomes"; + /* + * Salmonella gene, Uniprot Q8Z9G6, EMBLCDS CAD01290 + */ + return "CAD01290"; } @Override - public String getTestQuery() + public String getDbSource() { - return "DDB_G0283883"; + return "EnsemblGenomes"; } }