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/protein/inc/unirefTbl.h src/hg/protein/inc/unirefTbl.h
index 85f0dd9..714a066 100644
--- src/hg/protein/inc/unirefTbl.h
+++ src/hg/protein/inc/unirefTbl.h
@@ -1,23 +1,23 @@
 /* unirefTbl - load and manage uniref data. */
 
 /* Copyright (C) 2005 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 UNIREFTBL_H
 #define UNIREFTBL_H
 
 #include "uniref.h"
 
 struct unirefTbl *unirefTblNew(char *unrefTabFile, char *orgFilter);
 /* construct a unirefTbl object from the tab seperated file.  If orgFilter is
  * not null, load only records for this organism */
 
 void unirefTblFree(struct unirefTbl **utPtr);
 /* free a unirefTbl object. */
 
 struct uniref *unirefTblGetEntryById(struct unirefTbl *ut, char *entryId);
 /* Get the uniref entry list (ptr to rep) for an entry id, or NULL */
 
 struct uniref *unirefTblGetEntryByAcc(struct unirefTbl *ut, char *acc);
 /* Get the entry list (ptr to rep) give any accession in the entry */
 
 #endif