001/** 002 * Copyright (C) 2010-2015 The Roslin Institute <contact andy.law@roslin.ed.ac.uk> 003 * 004 * This file is part of JEnsembl: a Java API to Ensembl data sources developed by the 005 * Bioinformatics Group at The Roslin Institute, The Royal (Dick) School of 006 * Veterinary Studies, University of Edinburgh. 007 * 008 * Project hosted at: http://jensembl.sourceforge.net 009 * 010 * This is free software: you can redistribute it and/or modify 011 * it under the terms of the GNU General Public License (version 3) as published by 012 * the Free Software Foundation. 013 * 014 * This software is distributed in the hope that it will be useful, 015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 017 * GNU General Public License for more details. 018 * 019 * You should have received a copy of the GNU General Public License 020 * in this software distribution. If not, see: http://opensource.org/licenses/gpl-3.0.html 021 */ 022package uk.ac.roslin.ensembl.config; 023 024 025/** 026 * 027 * @author tpaterso 028 */ 029public class CodonTable extends EnsemblType { 030 031 public static int UNIVERSAL = 1; 032 public static int VERTEBRATE_MITOCHONDRIAL = 2; 033 public static int YEAST_MITOCHONDRIAL = 3; 034 public static int MOLD_MITOCHONDRIAL = 4; 035 public static int INVERTEBRATE_MITOCHONDRIAL = 5; 036 public static int CILIATE_NUCLEAR = 6; 037 public static int ECHINODERM_MITOCHONDRIAL = 7; 038 public static int EUPLOTID_NUCLEAR = 8; 039 public static int BACTERIAL = 9; 040 public static int ALTERNATIVE_YEAST_NUCLEAR = 10; 041 public static int ASCIDIAN_MITOCHONDRIAL = 11; 042 public static int FLATWORM_MITOCHONDRIAL = 12; 043 public static int BLEPHARISMA_MACRONUCLEAR = 13; 044 public static int TWOCHLOROPHYCEAN_MITOCHONDRIAL = 14; 045 public static int TREMATODE_MITOCHONDRIAL = 15; 046 public static int SCENEDESMUS_MITOCHONDRIAL = 16; 047 048 049}