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/spKgMap.h src/hg/protein/inc/spKgMap.h
index 70e9073..c5f9da6 100644
--- src/hg/protein/inc/spKgMap.h
+++ src/hg/protein/inc/spKgMap.h
@@ -1,28 +1,28 @@
 /* spKgMap - map swissprot accs to known gene ids */
 
 /* 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 SPKGMAP_H
 #define SPKGMAP_H
 #include "common.h"
 #include "spKgMap.h"
 #include "jksql.h"
 #include "kgXref.h"
 #include "localmem.h"
 #include "hash.h"
 #include "linefile.h"
 
 struct spKgMap;
 struct sqlConnection;
 
 struct spKgMap *spKgMapNew(struct sqlConnection *conn);
 /* load data from from kgXRef and kgProtAlias tables to map from swissprot
  * accs to known gene ids. */
 
 void spKgMapFree(struct spKgMap **spKgMapPtr);
 /* free a spKgMap structure */
 
 struct slName *spKgMapGet(struct spKgMap *spKgMap, char *spAcc);
 /* Get the list of known gene ids for a swissprot acc.  If not found NULL is
  * returned. */
 #endif