0839f22588fac15d105e88503902d57298fc77a9 hiram Tue Aug 10 12:01:56 2010 -0700 longer names for ensembl proteins first seen in mm9 diff --git src/hg/lib/ensGtp.sql src/hg/lib/ensGtp.sql index 2dcb926..69a942e 100644 --- src/hg/lib/ensGtp.sql +++ src/hg/lib/ensGtp.sql @@ -1,12 +1,11 @@ # This creates the table holding the relationship between # ensemble genes, transcripts, and peptides. CREATE TABLE ensGtp ( gene char(20) NOT NULL, transcript char(20) NOT NULL, - protein char(20) NOT NULL, + protein char(23) NOT NULL, # INDICES INDEX(gene(19)), UNIQUE(transcript(19)), - INDEX(protein(19)) + INDEX(protein(23)) ) -