b0ddf15c766ef79a523eb92e70b7227b89d24798 hiram Wed Nov 12 09:54:25 2014 -0800 remove the Tracks word from the labels refs #4049 diff --git src/hg/lib/grp.sql src/hg/lib/grp.sql index 01cba76..2fe713c 100644 --- src/hg/lib/grp.sql +++ src/hg/lib/grp.sql @@ -1,26 +1,26 @@ # grp.sql was originally generated by the autoSql program, which also # generated grp.c and grp.h. This creates the database representation of # an object which can be loaded and saved from RAM in a fairly # automatic way. #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("pub", "Literature", 3.5); -INSERT grp VALUES("rna", "mRNA and EST Tracks", 4); +INSERT grp VALUES("map", "Mapping and Sequencing", 2); +INSERT grp VALUES("genes", "Genes and Gene Predictions", 3); +INSERT grp VALUES("pub", "Phenotype and Literature", 3.5); +INSERT grp VALUES("rna", "mRNA and EST", 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);