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/inc/read_malign.h src/hg/zoo/inc/read_malign.h
index 612772e..24c097b 100644
--- src/hg/zoo/inc/read_malign.h
+++ src/hg/zoo/inc/read_malign.h
@@ -1,26 +1,26 @@
 /* read_malign.h - header file for shared procedures to handle multiple
 *  alignments */
 
 /* Copyright (C) 2003 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. */
 
 /* Return a multiple alignment contained in a file.  The first line contains
 *  two integers, namely the number of rows (nrow) followed by the number of
 *  columns (ncol).  The next nrow lines contain the names of the sequences.
 *  The last nrow lines contain the rows of the alignment, each being a
 *  sequence of ncol characters from the set {A,C,G,T,-}.
 */
 char **read_malign(char *filename, int *nrow_ptr, int *ncol_ptr,
   char ***seqname_ptr);
 
 /* Returns arrays similar to read_malign but for fourfold degenerate sites in human coordinates... */
 int **read_sites(char *filename, int *nrow_ptr, int *ncol_ptr,
 		 char ***seqname_ptr, int **sites);
 
 /* Return an array giving the position in the first sequence (position numbers
 *  start with 1) for each alignment column (numbered 0, 1, ..., ncol-1).
 *  If there is a dash at the top of column i, then the corresponding sequence
 *  position is reported as 0.
 */
 int *position_in_seq1(char **align, int ncol);