ee48618e216a57c978f5db438e1f7659d0e23ffd mspeir Thu Feb 6 08:41:16 2014 -0800 Adding pubs group to grp table sql file. Now any future assemblies should have the pubs group, refs #12583 diff --git src/hg/lib/grp.sql src/hg/lib/grp.sql index af180a2..a42e8ab 100644 --- src/hg/lib/grp.sql +++ src/hg/lib/grp.sql @@ -5,21 +5,22 @@ #This describes a group of annotation tracks. CREATE TABLE grp ( name varchar(255) not null, # Group name. Connects with trackDb.grp label varchar(255) not null, # Label to display to user priority float not null, # 0 is top #Indices PRIMARY KEY(name) ); INSERT grp VALUES("user", "Custom Tracks", 1); INSERT grp VALUES("map", "Mapping and Sequencing Tracks", 2); INSERT grp VALUES("genes", "Genes and Gene Prediction Tracks", 3); +INSERT grp VALUES("pubs", "Literature", 3.5); INSERT grp VALUES("rna", "mRNA and EST Tracks", 4); INSERT grp VALUES("regulation", "Expression and Regulation", 5); INSERT grp VALUES("compGeno", "Comparative Genomics", 6); INSERT grp VALUES("varRep", "Variation and Repeats", 7); INSERT grp VALUES("x", "Experimental Tracks", 10);