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/overlapSelect/chromAnnMap.h src/hg/utils/overlapSelect/chromAnnMap.h index e8e4d83..b2a59af 100644 --- src/hg/utils/overlapSelect/chromAnnMap.h +++ src/hg/utils/overlapSelect/chromAnnMap.h @@ -1,43 +1,43 @@ /* Object the maps ranges to chromAnn objects */ /* Copyright (C) 2010 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 CHROMANNMAP_H #define CHROMANNMAP_H struct chromAnnMap; struct chromAnn; #include "hash.h" struct chromAnnMapIter /* iterator over a chromAnnMap */ { struct chromAnnMap *cam; struct hashCookie chromCookie; struct range *currentRange; struct chromAnn *currentCa; }; struct chromAnnMap *chromAnnMapNew(); /* construct a new object */ void chromAnnMapAdd(struct chromAnnMap *cam, struct chromAnn *ca); /* add a record to the table. */ struct chromAnnRef *chromAnnMapFindOverlap(struct chromAnnMap *cam, struct chromAnn *ca); /* get list of overlaps to ca */ struct chromAnnMapIter chromAnnMapFirst(struct chromAnnMap *cam); /* get iterator over a chromAnnMap. EXTREME DANGER: only one can be * active on the same map. */ struct chromAnn *chromAnnMapIterNext(struct chromAnnMapIter *iter); /* next element in select table. EXTREME DANGER: only one can be * active on the same map. */ void chromAnnMapFree(struct chromAnnMap **camPtr); /* free chromAnnMap structures. */ #endif