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/lib/dnaMarkovSql.c src/hg/lib/dnaMarkovSql.c
index 562f049..bc938a1 100644
--- src/hg/lib/dnaMarkovSql.c
+++ src/hg/lib/dnaMarkovSql.c
@@ -1,28 +1,28 @@
 /* Load markov objects from sql db. */
 
 /* Copyright (C) 2014 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 "linefile.h"
 #include "dnaMarkovSql.h"
 #include "dnaseq.h"
 #include "dnaMarkov.h"
 #include "hdb.h"
 
 boolean loadMark2(struct sqlConnection *conn, char *table, char *chrom, unsigned start, unsigned end, double mark2[5][5][5])
 // Load 2nd-order markov model from given table
 {
 boolean found = FALSE;
 int rowOffset;
 struct sqlResult *sr = hRangeQuery(conn, table, chrom, start, end, NULL, &rowOffset);
 char **row;
 // XXXX use "best" model instead of first if there are multiple (i.e. maximize overlap with start/end).
 if((row = sqlNextRow(sr)) != NULL)
     {
     dnaMark2Deserialize(row[rowOffset + 3], mark2);
     found = TRUE;
     }
 sqlFreeResult(&sr);
 return found;
 }