X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fext%2Fensembl%2FEnsemblGenomes.java;h=9fc6a53ef3912c1c15edc2a2a41e7ff8cf9efad2;hb=e03b4b6d85409cfe15ce0f2b3ba2d4d59a834c91;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..9fc6a53 100644 --- a/src/jalview/ext/ensembl/EnsemblGenomes.java +++ b/src/jalview/ext/ensembl/EnsemblGenomes.java @@ -1,5 +1,27 @@ +/* + * 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.bin.Cache; +import jalview.datamodel.DBRefSource; /** * A class to behave much like EnsemblGene but referencing the ensemblgenomes @@ -16,25 +38,30 @@ public class EnsemblGenomes extends EnsemblGene */ public EnsemblGenomes() { - super(ENSEMBL_GENOMES_REST); + super(); + setDomain(Cache.getDefault(ENSEMBL_GENOMES_BASEURL, + DEFAULT_ENSEMBL_GENOMES_BASEURL)); } @Override - public boolean isGeneIdentifier(String query) + public String getDbName() { - return true; + return DBRefSource.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 DBRefSource.ENSEMBLGENOMES; } }