e70152e44cc66cc599ff6b699eb8adc07f3e656a
kent
  Sat May 24 21:09:34 2014 -0700
Adding Copyright NNNN Regents of the University of California to all files I believe with reasonable certainty were developed under UCSC employ or as part of Genome Browser copyright assignment.
diff --git src/lib/dnaMarkov.c src/lib/dnaMarkov.c
index 5d8d6d2..91c153d 100644
--- src/lib/dnaMarkov.c
+++ src/lib/dnaMarkov.c
@@ -1,18 +1,21 @@
 /* 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. */
+
 #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];
 int oneHisto[4];