4898794edd81be5285ea6e544acbedeaeb31bf78
max
  Tue Nov 23 08:10:57 2021 -0800
Fixing pointers to README file for license in all source code files. refs #27614

diff --git src/hg/cgilib/annoGrateWigDb.c src/hg/cgilib/annoGrateWigDb.c
index 98ae43d..55cee32 100644
--- src/hg/cgilib/annoGrateWigDb.c
+++ src/hg/cgilib/annoGrateWigDb.c
@@ -1,17 +1,17 @@
 /* annoGrateWigDb -- subclass of annoGrator for wiggle database table & file */
 
 /* Copyright (C) 2014 The Regents of the University of California 
- * See README in this or parent directory for licensing information. */
+ * See kent/LICENSE or http://genome.ucsc.edu/license/ for licensing information. */
 
 #include "annoGrateWigDb.h"
 #include "annoStreamWig.h"
 #include "wiggle.h"
 
 struct annoGrator *annoGrateWigDbNew(char *db, char *table, struct annoAssembly *aa,
                                      enum annoGrateWigMode mode, int maxOutput)
 /* Create an annoGrator subclass for wiggle data from db.table (and the file it points to).
  * See src/inc/annoGrateWig.h for a description of mode. */
 {
 struct annoStreamer *wigSource = annoStreamWigDbNew(db, table, aa, maxOutput);
 return annoGrateWigNew(wigSource, mode);
 }