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/synMap/createBinMap.c src/hg/synMap/createBinMap.c
index 592f6ac..78db82e 100644
--- src/hg/synMap/createBinMap.c
+++ src/hg/synMap/createBinMap.c
@@ -1,26 +1,26 @@
 /* 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 "synMap.h"
 #include "binMap.h"
 
 
 void usage()
 {
 errAbort("createBinMap - using an all against all synMap from Lior at\n"
 	 "Berkeley or Sanja and Robert from UCSC create a mapping from\n"
 	 "genomeA bits of size N to all the bits of genomeB that map to it.\n"
 	 "The idea is to have a particular piece of a genome and then find\n"
 	 "all the pieces of the other genome that align to it.\n"
 	 "usage:\n\t"
 	 "createBinMap <fileNameIn> <fileNameOut> <genome {A,B}> <reference size>\n");
 }
 
 int main(int argc, char *argv[])
 {
 errAbort("Not Done yet!\n");
 if(argc != 5)
     usage();
 return 0;
 }