001    /*
002     * To change this template, choose Tools | Templates
003     * and open the template in the editor.
004     */
005    package org.biojava3.core.sequence;
006    
007    /**
008     *
009     * GenBank                           gi|gi-number|gb|accession|locus
010     * ENA Data Library                  gi|gi-number|emb|accession|locus
011     * DDBJ, DNA Database of Japan       gi|gi-number|dbj|accession|locus
012     * NBRF PIR                          pir||entry
013     * Protein Research Foundation       prf||name
014     * SWISS-PROT UNIPROT                sp|accession|name
015     * Brookhaven Protein Data Bank (1)  pdb|entry|chain
016     * Brookhaven Protein Data Bank (2)  entry:chain|PDBID|CHAIN|SEQUENCE
017     * Patents                           pat|country|number
018     * GenInfo Backbone Id               bbs|number
019     * General database identifier       gnl|database|identifier
020     * NCBI Reference Sequence           ref|accession|locus
021     * Local Sequence identifier         lcl|identifier
022     * @author Scooter Willis <willishf at gmail dot com>
023     */
024    
025    public enum DataSource {
026    
027        GENBANK, ENA, DDBJ, NBRF, PRF, PDB1, PDB2, PDBe, PATENTS, GENINFO, GENERAL, NCBI, UNIPROT, PFAM, LOCAL, UNKNOWN
028    }