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/lib/dnaMarkov.c src/lib/dnaMarkov.c
index 91c153d..011f871 100644
--- src/lib/dnaMarkov.c
+++ src/lib/dnaMarkov.c
@@ -1,20 +1,20 @@
 /* dnaMarkov - stuff to build 1st, 2nd, 3rd, and coding
  * 3rd degree Markov models for DNA. */
 
 /* 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 "common.h"
 #include "dnautil.h"
 #include "dnaseq.h"
 #include "slog.h"
 #include "dnaMarkov.h"
 
 
 void dnaMark0(struct dnaSeq *seqList, double mark0[5], int slogMark0[5])
 /* Figure out frequency of bases in input.  Results go into
  * mark0 and optionally in scaled log form into slogMark0.
  * Order is N, T, C, A, G.  (TCAG is our normal order) */
 {
 struct dnaSeq *seq;
 int histo[4];