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/inc/hgExp.h src/hg/inc/hgExp.h
index 0ab1256..e893c90 100644
--- src/hg/inc/hgExp.h
+++ src/hg/inc/hgExp.h
@@ -1,52 +1,52 @@
 /* hgExp - help browse expression data. */
 
 /* Copyright (C) 2009 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 HGEXP_H
 #define HGEXP_H
 
 void hgExpColorDropDown(struct cart *cart, char *varName);
 /* Make color drop-down. */
 
 boolean hgExpRatioUseBlue(struct cart *cart, char *varName);
 /* Return TRUE if should use blue instead of red
  * in the expression ratios. */
 
 char **hgExpGetNames(
 	char *database,	/* Database, commonly "hgFixed" */
 	char *table, 	/* Table, such as "affyRatioExps" */
 	int expCount, 	/* Number of experiments we want to see */
 	int *expIds, 	/* Id's of each experiment.  -1's separate groups. */
 	int skipSize);	/* Skip this many letters of experiment name */
 /* Create array filled with experiment names. */
 
 void hgExpLabelPrint(
         char *database,         /* database we're loading */
 	char *colName, 		/* hgNear column name */
 	char *subName, 		/* all/median/selected */
 	int skipName,		/* number of characters in name to skip */
 	char *url, 		/* URL of hyperlink, may be NULL */
 	int representativeCount,/* Number of representative experiments */ 
 	int *representatives,   /* ID's of each rep. -1's separate groups */
 	char *expTable,	/* Table (in hgFixed) where names stored. */
 	int gifStart);		/* If split deal with this. */
 /* Print out labels of various experiments - as cells filled
  * with gifs in a table. */
 
 boolean hgExpLoadVals(struct sqlConnection *lookupConn,
 	struct sqlConnection *dataConn,
 	char *lookupTable, char *name, char *dataTable,
 	int *retValCount, float **retVals);
 /* Load up and return expression bed record.  Return NULL
  * if none of given name exist. */
 
 void hgExpCellPrint(char *colName, char *geneId, 
 	struct sqlConnection *lookupConn, char *lookupTable,
 	struct sqlConnection *dataConn, char *dataTable,
 	int representativeCount, int *representatives,
 	boolean useBlue, boolean useGrays, boolean logGrays, float scale);
 /* Print out html for expression cell in table. */
 
 #endif /* HGEXP_H */