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/baseMask/trackToBaseMask.c src/hg/baseMask/trackToBaseMask.c
index 799a04a..b67953b 100644
--- src/hg/baseMask/trackToBaseMask.c
+++ src/hg/baseMask/trackToBaseMask.c
@@ -1,56 +1,56 @@
 /* overlapSelect - select records based on overlap of chromosome ranges */
 
 /* Copyright (C) 2008 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 "jksql.h"
 #include "hdb.h"
 //#include "sig.h"
 #include "chromInfo.h"
 #include "options.h"
 #include "genomeRangeTree.h"
 #include "baseMaskCommon.h"
 
 /* FIXME:
  * - would be nice to be able to specify ranges in the same manner
  *   as featureBits
  * - should keep header lines in files
  * - don't need to save if infile records if stats output
  */
 
 static struct optionSpec optionSpecs[] = {
     {"chromDb", OPTION_STRING},
     {"quiet", OPTION_BOOLEAN},
     {NULL, 0}
 };
 
 
 void usage(char *msg)
 /* usage message and abort */
 {
 static char *usageMsg =
 #include "trackToBaseMaskUsage.msg"
     ;
 errAbort("%s\n%s", msg, usageMsg);
 }
 
 /* entry */
 int main(int argc, char** argv)
 {
 char *db, *track, *obama, *chromDb;
 optionInit(&argc, argv, optionSpecs);
 --argc;
 ++argv;
 if (argc == 0)
     usage("");
 if (argc < 2 || argc > 3)
     usage("wrong # args");
 db = argv[0];
 track = argv[1];
 obama = (argc == 2 ? NULL : argv[2]);
 chromDb = optionVal("chromDb",db);
 
 trackToBaseMask(db, track, chromDb, obama, optionExists("quiet"));
 return 0;
 }