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/utils/refSeqGet/refSeqVerInfo.h src/hg/utils/refSeqGet/refSeqVerInfo.h
index eccd717..0ff948a 100644
--- src/hg/utils/refSeqGet/refSeqVerInfo.h
+++ src/hg/utils/refSeqGet/refSeqVerInfo.h
@@ -1,30 +1,30 @@
 /* object to track refseqs that are to be retrieved */
 
 /* 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. */
 #ifndef refSeqVerInfo_h
 #define refSeqVerInfo_h
 struct sqlConnection;
 
 struct refSeqVerInfo
 /* Version information for refseqs being retrieved.  Constructed from either the -accList
  * file or the all native RefSeqs in the database.
  */
 {
     struct refSeqVerInfo *next;
     char *acc;            // accession without version
     int ver;              // current version in database, or 0 if not in database
     int requestVer;       // requested version from accList, or 0 if version not specified.
 };
 
 struct hash *refSeqVerInfoFromDb(struct sqlConnection *conn, boolean getNM, boolean getNR, struct refSeqVerInfo **refSeqVerInfoList);
 /* load refSeqVerInfo table for all native refseqs in the database */
 
 struct hash *refSeqVerInfoFromFile(struct sqlConnection *conn, char *accList, struct refSeqVerInfo **refSeqVerInfoList);
 /* load refSeqVerInfo table for all native refseqs specified in a file, then validate it against
  * the database. */
 
 int refSeqVerInfoGetVersion(char *acc, struct sqlConnection *conn);
 /* get the version from the database, or zero if accession is not found */
 
 #endif