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/alignSeqSizes.h src/hg/inc/alignSeqSizes.h
index e9644a7..6259541 100644
--- src/hg/inc/alignSeqSizes.h
+++ src/hg/inc/alignSeqSizes.h
@@ -1,26 +1,26 @@
 /* alignSeqSizes - Parse and store query and target sequence sizes for use
  * when converting or parsing alignments */
 
 /* Copyright (C) 2004 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 ALIGNSEQSIZES_H
 #define ALIGNSEQSIZES_H
 
 struct alignSeqSizes;
 
 struct alignSeqSizes* alignSeqSizesNew(char *querySizesFile, char *querySizesStr,
                                        char *targetSizesFile, char *targetSizesStr);
 /* Allocate a new object.  If *File arguments are not null, it is a tab
  * separated file of name and size.  If sizesStr is not null, it is a string
  * with whitespace-seperated pairs of name and size. */
 
 void alignSeqSizesFree(struct alignSeqSizes** assPtr);
 /* free an alignSeqSizes object */
 
 int alignSeqSizesMustGetQuery(struct alignSeqSizes* ass, char *name);
 /* Find size of a query sequence, or error if not found */
 
 int alignSeqSizesMustGetTarget(struct alignSeqSizes* ass, char *name);
 /* Find size of a query sequence, or error if not found */
 
 #endif