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/utils/faPolyASizes/faPolyASizes.c src/utils/faPolyASizes/faPolyASizes.c
index 1f131bf..29b8744 100644
--- src/utils/faPolyASizes/faPolyASizes.c
+++ src/utils/faPolyASizes/faPolyASizes.c
@@ -1,55 +1,55 @@
 /* faPolyASizes - get poly-A tail sizes*/
 
 /* 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 "linefile.h"
 #include "dnautil.h"
 #include "options.h"
 #include "fa.h"
 
 
 /* command line options */
 static struct optionSpec optionSpecs[] =
 {
     {NULL, 0}
 };
 
 void usage()
 /* Explain usage and exit. */
 {
 errAbort(
   "faPolyASizes - get poly A sizes\n"
   "usage:\n"
   "   faPolyASizes in.fa out.tab\n"
   "\n"
   "output file has four columns:\n"
   "   id seqSize tailPolyASize headPolyTSize\n"
   "\n"
   "options:\n"
   );
 }
 
 void faPolyASizes(char *inFile, char *outFile)
 /* faPolyASizes - get poly-A tail sizes*/
 {
 DNA *seq;
 int size;
 char *name;
 struct lineFile *lf = lineFileOpen(inFile, TRUE);
 FILE *f = mustOpen(outFile, "w");
 
 while (faSomeSpeedReadNext(lf, &seq, &size, &name, FALSE))
     fprintf(f, "%s\t%d\t%d\t%d\n", name, size,
             maskTailPolyA(seq, size), maskHeadPolyT(seq, size));
 }
 
 int main(int argc, char *argv[])
 /* Process command line. */
 {
 optionInit(&argc, argv, optionSpecs);
 if (argc != 3 )
     usage();
 faPolyASizes(argv[1], argv[2]);
 return 0;
 }