d8a632950a717f3ecaddbfb01c0e0b84f5b6726a markd Tue May 21 11:57:36 2019 -0700 remove static limit on size the number of blocks that can be in a bigPsl. Test case not checked in, as it is 20mb for one record (fixes #23537) diff --git src/hg/lib/encode/wgEncodeGencodeGeneSymbol.sql src/hg/lib/encode/wgEncodeGencodeGeneSymbol.sql index 744fdb7..31324ce 100644 --- src/hg/lib/encode/wgEncodeGencodeGeneSymbol.sql +++ src/hg/lib/encode/wgEncodeGencodeGeneSymbol.sql @@ -1,12 +1,13 @@ # wgEncodeGencodeGeneSymbol.sql was originally generated by the autoSql program, which also # generated wgEncodeGencodeGeneSymbol.c and wgEncodeGencodeGeneSymbol.h. This creates the database representation of # an object which can be loaded and saved from RAM in a fairly # automatic way. #GENCODE transcript to official gene symbol. For human, this is the HUGO Gene Nomenclature Committee (HGNC) gene symbo. For mouse, this is the Mouse Genome Informatics (MGI) gene symbol. CREATE TABLE wgEncodeGencodeGeneSymbol ( transcriptId varchar(255) not null, # GENCODE transcript identifier symbol varchar(255) not null, # HGNC/MGI gene symbol + geneId varchar(255) not null, # HGNC/MGI symbol id used by database #Indices - INDEX(transcriptId) + PRIMARY KEY(transcriptId) );