0ede364a2dcb452681933d5a3579b4f05d90a245 markd Sun Jul 5 15:16:27 2020 -0700 fixed bug where totalSeqSize was not stored in index, now hgBlat works diff --git src/hg/lib/blatServers.sql src/hg/lib/blatServers.sql index 315fe3a..ee7f5c0 100644 --- src/hg/lib/blatServers.sql +++ src/hg/lib/blatServers.sql @@ -1,15 +1,16 @@ # blatServers.sql was originally generated by the autoSql program, which also # generated blatServers.c and blatServers.h. This creates the database representation of # an object which can be loaded and saved from RAM in a fairly # automatic way. #Description of online BLAT servers CREATE TABLE blatServers ( db varchar(255) not null, # Database name host varchar(255) not null, # Host (machine) name port int not null, # TCP/IP port on host isTrans tinyint not null, # 0 for nucleotide/1 for translated nucleotide canPcr tinyint not null, # 1 for use with PCR, 0 for not + dynamic tinyint not null, # 1 for if gfServer is dynamic under xinetd, 0 for not #Indices PRIMARY KEY(db) );