95940b1ae5984d58a45e1f60047ff5a381f3d601
mspeir
  Thu Feb 6 09:21:03 2014 -0800
Changed pubs to pub, refs #12583
diff --git src/hg/lib/grp.sql src/hg/lib/grp.sql
index a42e8ab..01cba76 100644
--- src/hg/lib/grp.sql
+++ src/hg/lib/grp.sql
@@ -5,22 +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("pub", "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);