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/lib/minChromSize.c src/hg/lib/minChromSize.c
index dc66196..318714c 100644
--- src/hg/lib/minChromSize.c
+++ src/hg/lib/minChromSize.c
@@ -1,22 +1,22 @@
 /* minChromSize - routines to calculate the minimum size of
  * all chromosomes needed to cover available annotatins. 
  * Generally this is helpful when constructing binKeepers
  * for random access to annotations. */
 
 /* 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 "common.h"
 #include "hash.h"
 #include "bed.h"
 #include "minChromSize.h"
 
 
 struct hash *minChromSizeFromBeds(struct bed *bedList)
 /* Go through bed list, creating a hash full of minChromSizes. 
  * This is so we can use binKeeper without user having to pass
  * us list of chromSizes. */
 {
 struct hash *sizeHash = hashNew(16);
 struct bed *bed;
 for (bed = bedList; bed != NULL; bed = bed->next)