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/inc/switchDbTss.h src/hg/inc/switchDbTss.h
index f947502..261ca00 100644
--- src/hg/inc/switchDbTss.h
+++ src/hg/inc/switchDbTss.h
@@ -1,74 +1,74 @@
 /* switchDbTss.h was originally generated by the autoSql program, which also 
  * generated switchDbTss.c and switchDbTss.sql.  This header links the database and
  * the RAM representation of objects. */
 
 /* Copyright (C) 2007 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 SWITCHDBTSS_H
 #define SWITCHDBTSS_H
 
 #define SWITCHDBTSS_NUM_COLS 11
 
 struct switchDbTss
 /* Switchgear Genomics TSS DB table */
     {
     struct switchDbTss *next;  /* Next in singly linked list. */
     char *chrom;	/* Reference sequence chromosome or scaffold */
     unsigned chromStart;	/* Start in Chromosome */
     unsigned chromEnd;	/* End in Chromosome */
     char *name;	/* Name */
     unsigned score;	/* Score */
     char strand[2];	/* Strand */
     double confScore;	/* Confidence score */
     char *gmName;	/* Gene model UID/name */
     unsigned gmChromStart;	/* Gene model chromStart */
     unsigned gmChromEnd;	/* Gene model chromEnd */
     unsigned char isPseudo;	/* 0 if not a pseudogene TSS, 1 if it is */
     };
 
 void switchDbTssStaticLoad(char **row, struct switchDbTss *ret);
 /* Load a row from switchDbTss table into ret.  The contents of ret will
  * be replaced at the next call to this function. */
 
 struct switchDbTss *switchDbTssLoad(char **row);
 /* Load a switchDbTss from row fetched with select * from switchDbTss
  * from database.  Dispose of this with switchDbTssFree(). */
 
 struct switchDbTss *switchDbTssLoadAll(char *fileName);
 /* Load all switchDbTss from whitespace-separated file.
  * Dispose of this with switchDbTssFreeList(). */
 
 struct switchDbTss *switchDbTssLoadAllByChar(char *fileName, char chopper);
 /* Load all switchDbTss from chopper separated file.
  * Dispose of this with switchDbTssFreeList(). */
 
 #define switchDbTssLoadAllByTab(a) switchDbTssLoadAllByChar(a, '\t');
 /* Load all switchDbTss from tab separated file.
  * Dispose of this with switchDbTssFreeList(). */
 
 struct switchDbTss *switchDbTssCommaIn(char **pS, struct switchDbTss *ret);
 /* Create a switchDbTss out of a comma separated string. 
  * This will fill in ret if non-null, otherwise will
  * return a new switchDbTss */
 
 void switchDbTssFree(struct switchDbTss **pEl);
 /* Free a single dynamically allocated switchDbTss such as created
  * with switchDbTssLoad(). */
 
 void switchDbTssFreeList(struct switchDbTss **pList);
 /* Free a list of dynamically allocated switchDbTss's */
 
 void switchDbTssOutput(struct switchDbTss *el, FILE *f, char sep, char lastSep);
 /* Print out switchDbTss.  Separate fields with sep. Follow last field with lastSep. */
 
 #define switchDbTssTabOut(el,f) switchDbTssOutput(el,f,'\t','\n');
 /* Print out switchDbTss as a line in a tab-separated file. */
 
 #define switchDbTssCommaOut(el,f) switchDbTssOutput(el,f,',',',');
 /* Print out switchDbTss as a comma separated list including final comma. */
 
 /* -------------------------------- End autoSql Generated Code -------------------------------- */
 
 #endif /* SWITCHDBTSS_H */