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/seqWindow.h src/hg/inc/seqWindow.h
index 5e13662..47ee276 100644
--- src/hg/inc/seqWindow.h
+++ src/hg/inc/seqWindow.h
@@ -1,19 +1,19 @@
 /* seqWindow -- generic interface & implementations for fetching subranges of a sequence */
 
 /* Copyright (C) 2017 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 SEQWINDOW_H
 #define SEQWINDOW_H
 
 struct seqWindow
 /* A portion (possibly all) of a sequence, with a means to fetch some other portion of sequence. */
     {
     char *seqName;         // Name of the sequence on which the current window is open.
     uint start;            // Start within seqName of current window.
     uint end;              // End within seqName of current window.
     char *seq;             // Uppercase IUPAC sequence of current window.
 
     void (*fetch)(struct seqWindow *self, char *seqName, uint start, uint end);
     /* Generic method to set the window to a new range and get a new chunk of uppercase sequence.
      * The sequence in seqWindow after fetching may be a larger range than what was requested,