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/encode/regionOrtho/regionOrtho.h src/hg/encode/regionOrtho/regionOrtho.h
index 1350c32..673db9e 100644
--- src/hg/encode/regionOrtho/regionOrtho.h
+++ src/hg/encode/regionOrtho/regionOrtho.h
@@ -1,42 +1,42 @@
 /* regionOrtho - create HTML files to compare syntenic predictions from liftOver and Mercator */
 
 /* 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. */
 #include "common.h"
 #include "jksql.h"
 #include "dystring.h"
 #include "linefile.h"
 
 struct sizeList
 {
     struct sizeList *next;
     int    chromStart, chromEnd;
     char  *chrom, *name;
     int    size; 
 };
 
 struct namedRegion
 {
     struct namedRegion *next;
     int chromStart, chromEnd;
     char *chrom, *name;
     struct dyString *notes;
 };
 
 struct mercatorSummary
 {
     struct mercatorSummary *next;
     int chromStart, chromEnd;
     int diffStart, diffEnd;
     char *chrom, *name;
     struct dyString *notes;
 };
 
 struct consensusRegion
 {
     struct consensusRegion *next;
     char *chrom;
     int chromStart, chromEnd;
     struct dyString *notes;
 };