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/lib/boxLump.c src/lib/boxLump.c index 0fdc67c..794234d 100644 --- src/lib/boxLump.c +++ src/lib/boxLump.c @@ -1,25 +1,25 @@ /* boxLump - This will lump together boxes that overlap into the smallest * box that encompasses the overlap. It will put other boxes that * fit in the encompassing box in there too. * It works by projecting the box list along one dimension at a * time looking for gaps between boxes. This is similar in function * to boxFindClumps, but a bit less precise, and quite a bit faster. * in some important cases. */ /* Copyright (C) 2011 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 "boxClump.h" #include "boxLump.h" int boxInCmpQuery(const void *va, const void *vb) /* Compare to sort based on query start. */ { const struct boxIn *a = *((struct boxIn **)va); const struct boxIn *b = *((struct boxIn **)vb); return a->qStart - b->qStart; }