e70152e44cc66cc599ff6b699eb8adc07f3e656a kent Sat May 24 21:09:34 2014 -0700 Adding Copyright NNNN Regents of the University of California to all files I believe with reasonable certainty were developed under UCSC employ or as part of Genome Browser copyright assignment. diff --git src/lib/boxLump.c src/lib/boxLump.c index 0fdfbc9..0fdc67c 100644 --- src/lib/boxLump.c +++ src/lib/boxLump.c @@ -1,23 +1,26 @@ /* 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. */ + #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; } int boxInCmpTarget(const void *va, const void *vb)