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/zoo/zooLib/read_malign.c src/hg/zoo/zooLib/read_malign.c
index 6c010f6..d6e37bf 100644
--- src/hg/zoo/zooLib/read_malign.c
+++ src/hg/zoo/zooLib/read_malign.c
@@ -1,19 +1,19 @@
 /* read_malign.h - shared procedures for handling textual multiple alignments */
 
 /* 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. */
 
 #include "util.h"
 #include "read_malign.h"
 
 
 int *position_in_seq1(char **A, int ncol)
 {
 int k, j, *col2pos = ckalloc(ncol*sizeof(int));
 
 for (k = j = 0; j < ncol; ++j)
     col2pos[j] = (isalpha(A[0][j]) ? ++k : 0);
 return col2pos;
 }
 
 int **read_sites(char *filename, int *nrow_ptr, int *ncol_ptr,