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/annoStreamDb.h src/hg/inc/annoStreamDb.h
index 657072f..d0c70e0 100644
--- src/hg/inc/annoStreamDb.h
+++ src/hg/inc/annoStreamDb.h
@@ -1,34 +1,34 @@
 /* annoStreamDb -- subclass of annoStreamer for database tables */
 
 /* Copyright (C) 2013 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 ANNOSTREAMDB_H
 #define ANNOSTREAMDB_H
 
 #include "annoStreamer.h"
 #include "joiner.h"
 #include "jsonParse.h"
 
 struct annoStreamer *annoStreamDbNew(char *db, char *table, struct annoAssembly *aa,
 				     int maxOutRows, struct jsonElement *config);
 /* Create an annoStreamer (subclass) object from a database table.
  * If config is NULL, then the streamer produces output from all fields
  * (except bin, unless table's autoSql includes bin).
  * Otherwise, config is a json object with a member 'relatedTables' that specifies
  * related tables and fields to join with table, for example:
  * config = { "relatedTables": [ { "table": "hg19.kgXref",
  *                                 "fields": ["geneSymbol", "description"] },
  *                               { "table": "hg19.knownCanonical",
  *                                 "fields": ["clusterId"] }
  *                             ] }
  * -- the streamer's autoSql will be constructed by appending autoSql column
  * descriptions to the columns of table.
  * Caller may free db, table, and dbTableFieldList when done with them, but must keep the
  * annoAssembly aa alive for the lifetime of the returned annoStreamer. */
 
 char *annoStreamDbColumnNameFromDtf(char *db, char *mainTable, struct joinerDtf *dtf);
 /* Return a string with the autoSql column name that would be assigned according to dtf's
  * db, table and field. */
 
 #endif//ndef ANNOSTREAMDB_H