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.h src/hg/utils/repeatSelect/repeatGroup.h index 4c166a7..6e9b4f9 100644 --- src/hg/utils/repeatSelect/repeatGroup.h +++ src/hg/utils/repeatSelect/repeatGroup.h @@ -1,42 +1,42 @@ /* 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. */ #ifndef REPEATGROUP_H #define REPEATGROUP_H #ifndef COMMON_H #include "common.h" #endif struct repeatGroup /* Stores a bunch of different calculations for a set of repeats. */ /* The sets of repeats are repeats sharing the same name. */ { struct repeatGroup *next; char *name; int copies; int bases; double meanPctId; double meanScore; double meanLength; }; void repeatGroupFree(struct repeatGroup **pRG); /* Free up a repeatGroup item. */ void repeatGroupFreeList(struct repeatGroup **pList); /* Free up a list of repeatGroups */ int repeatGroupCopyCmp(const void *va, const void *vb); /* Compare by number of copies. */ int repeatGroupBasesCmp(const void *va, const void *vb); /* Compare by number of bases covered for all copies of repeats. */ int repeatGroupLenCmp(const void *va, const void *vb); /* Compare by mean length of a repeat. */ int repeatGroupScoreCmp(const void *va, const void *vb); /* Compare by mean score of a repeat. */ #endif