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/utils/repeatSelect/repeatGroup.c src/hg/utils/repeatSelect/repeatGroup.c
index b3765c1..7f782f8 100644
--- src/hg/utils/repeatSelect/repeatGroup.c
+++ src/hg/utils/repeatSelect/repeatGroup.c
@@ -1,64 +1,64 @@
 /* Copyright (C) 2006 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 "repeatGroup.h"
 
 void repeatGroupFree(struct repeatGroup **pRG)
 /* Free up a repeatGroup item. */
 {
 if ((pRG != NULL) && (*pRG != NULL))
     freeMem((*pRG)->name);
 freez(pRG);
 }
 
 void repeatGroupFreeList(struct repeatGroup **pList)
 /* Free up a list of repeatGroups */
 {
 struct repeatGroup *el, *next;
 for (el = *pList; el != NULL; el = next)
     {
     next = el->next;
     repeatGroupFree(&el);
     }
 *pList = NULL;
 }
 
 int repeatGroupCopyCmp(const void *va, const void *vb)
 /* Compare by number of copies. */
 {
 const struct repeatGroup *a = *((struct repeatGroup **)va);
 const struct repeatGroup *b = *((struct repeatGroup **)vb);
 return b->copies - a->copies;
 }
 
 int repeatGroupBasesCmp(const void *va, const void *vb)
 /* Compare by number of bases covered for all copies of repeats. */
 {
 const struct repeatGroup *a = *((struct repeatGroup **)va);
 const struct repeatGroup *b = *((struct repeatGroup **)vb);
 return b->bases - a->bases;
 }
 
 int repeatGroupLenCmp(const void *va, const void *vb)
 /* Compare by mean length of a repeat. */
 {
 const struct repeatGroup *a = *((struct repeatGroup **)va);
 const struct repeatGroup *b = *((struct repeatGroup **)vb);
 if (b->meanLength > a->meanLength)
     return 1;
 else if (b->meanLength < a->meanLength)
     return -1;
 return 0;
 }
 
 int repeatGroupScoreCmp(const void *va, const void *vb)
 /* Compare by mean score of a repeat. */
 {
 const struct repeatGroup *a = *((struct repeatGroup **)va);
 const struct repeatGroup *b = *((struct repeatGroup **)vb);
 if (b->meanScore > a->meanScore)
     return 1;
 else if (b->meanScore < a->meanScore)
     return -1;
 return 0;
 }