001/* 002 * BioJava development code 003 * 004 * This code may be freely distributed and modified under the 005 * terms of the GNU Lesser General Public Licence. This should 006 * be distributed with the code. If you do not have a copy, 007 * see: 008 * 009 * http://www.gnu.org/copyleft/lesser.html 010 * 011 * Copyright for this code is held jointly by the individual 012 * authors. These should be listed in @author doc comments. 013 * 014 * For more information on the BioJava project and its aims, 015 * or to join the biojava-l mailing list, visit the home page 016 * at: 017 * 018 * http://www.biojava.org/ 019 * 020 */ 021package org.biojava.nbio.core.sequence; 022 023/** 024 *<pre> 025 * GenBank gi|gi-number|gb|accession|locus 026 * ENA Data Library gi|gi-number|emb|accession|locus 027 * DDBJ, DNA Database of Japan gi|gi-number|dbj|accession|locus 028 * NBRF PIR pir||entry 029 * Protein Research Foundation prf||name 030 * SWISS-PROT UNIPROT sp|accession|name 031 * Brookhaven Protein Data Bank (1) pdb|entry|chain 032 * Brookhaven Protein Data Bank (2) entry:chain|PDBID|CHAIN|SEQUENCE 033 * Patents pat|country|number 034 * GenInfo Backbone Id bbs|number 035 * General database identifier gnl|database|identifier 036 * NCBI Reference Sequence ref|accession|locus 037 * Local Sequence identifier lcl|identifier 038 * </pr> 039 * @author Scooter Willis <willishf at gmail dot com> 040 */ 041 042public enum DataSource { 043 044 GENBANK, ENA, DDBJ, NBRF, PRF, PDB1, PDB2, PDBe, PATENTS, GENINFO, GENERAL, NCBI, UNIPROT, PFAM, LOCAL, UNKNOWN 045}