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/hgTracks/mafTrack.h src/hg/hgTracks/mafTrack.h
index afac318..599453b 100644
--- src/hg/hgTracks/mafTrack.h
+++ src/hg/hgTracks/mafTrack.h
@@ -1,47 +1,47 @@
 /* mafTrack.h - MAF track display */
 
 /* Copyright (C) 2009 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. */
 
 #ifndef MAFTRACK_H
 #define MAFTRACK_H
 
 #ifndef MAF_H
 #include "maf.h"
 #endif
 
 struct mafPriv
 {
 void *list;
 struct customTrack *ct;
 };
 
 struct mafPriv *getMafPriv(struct track *track);
 
 /* zoom level where summary file is used */
 static inline boolean inSummaryMode(struct cart *cart, struct trackDb *tdb, int winSize)
 {
 char *snpTable = trackDbSetting(tdb, "snpTable");
 unsigned summaryWindowSize = cartOrTdbInt(cart, tdb, "summaryWindowSize", 1000000);
 
 boolean windowBigEnough =  (winSize > summaryWindowSize);
 boolean doSnpMode = (snpTable != NULL) && cartOrTdbBoolean(cart, tdb, MAF_SHOW_SNP,FALSE);
 return windowBigEnough && !doSnpMode;
 }
 
 
 /* zoom level that displays synteny breaks and nesting brackets */
 #define MAF_DETAIL_VIEW 30000
 
 void drawMafRegionDetails(struct mafAli *mafList, int height,
         int seqStart, int seqEnd, struct hvGfx *hvg, int xOff, int yOff,
         int width, MgFont *font, Color color, Color altColor,
         enum trackVisibility vis, boolean isAxt, boolean chainBreaks,
 	boolean doSnpMode);
 /* Draw wiggle/density plot based on scoring things on the fly. */
 
 void drawMafChain(struct hvGfx *hvg, int xOff, int yOff, int width, int height,
                         boolean isDouble);
 /* draw single or double chain line between alignments in MAF display */
 
 #endif