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/histogram.c src/lib/histogram.c index 7da7679..6fa6cb3 100644 --- src/lib/histogram.c +++ src/lib/histogram.c @@ -1,19 +1,19 @@ /* histogram function for data array in memory */ /* 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 "histogram.h" static unsigned autoScale(float *values, size_t N, float *binSize, unsigned *binCount, float *minValue, float *min, float *max) /* determine binSize, binCount, minValue for values[N] * If any of those are given, use them instead of calculating. * A given minValue means ignore data below that. * NAN's for binSize or minValue are the signals to not use them. * non-zero for binCount to use it. NOTE: binCount is actually one * too high to get the minimum and maximum values in the first and * last (binCount-1) bins correctly. */