e70152e44cc66cc599ff6b699eb8adc07f3e656a
kent
  Sat May 24 21:09:34 2014 -0700
Adding Copyright NNNN Regents of the University of California to all files I believe with reasonable certainty were developed under UCSC employ or as part of Genome Browser copyright assignment.
diff --git src/hg/inc/geneTree.h src/hg/inc/geneTree.h
index 2c9266a..d4dbcf9 100644
--- src/hg/inc/geneTree.h
+++ src/hg/inc/geneTree.h
@@ -1,62 +1,65 @@
 /* geneTree.h was originally generated by the autoSql program, which also 
  * generated geneTree.c and geneTree.sql.  This header links the database and
  * the RAM representation of objects. */
 
+/* Copyright (C) 2010 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #ifndef GENETREE_H
 #define GENETREE_H
 
 #define GENETREE_NUM_COLS 2
 
 struct geneTree
 /* A tree that represents the phylogenetic relation between a gene and its orthologs. */
     {
     struct geneTree *next;  /* Next in singly linked list. */
     char *name;	/* Name of gene */
     char *tree;	/* Newick format of phylogenetic tree */
     };
 
 void geneTreeStaticLoad(char **row, struct geneTree *ret);
 /* Load a row from geneTree table into ret.  The contents of ret will
  * be replaced at the next call to this function. */
 
 struct geneTree *geneTreeLoad(char **row);
 /* Load a geneTree from row fetched with select * from geneTree
  * from database.  Dispose of this with geneTreeFree(). */
 
 struct geneTree *geneTreeLoadAll(char *fileName);
 /* Load all geneTree from whitespace-separated file.
  * Dispose of this with geneTreeFreeList(). */
 
 struct geneTree *geneTreeLoadAllByChar(char *fileName, char chopper);
 /* Load all geneTree from chopper separated file.
  * Dispose of this with geneTreeFreeList(). */
 
 #define geneTreeLoadAllByTab(a) geneTreeLoadAllByChar(a, '\t');
 /* Load all geneTree from tab separated file.
  * Dispose of this with geneTreeFreeList(). */
 
 struct geneTree *geneTreeCommaIn(char **pS, struct geneTree *ret);
 /* Create a geneTree out of a comma separated string. 
  * This will fill in ret if non-null, otherwise will
  * return a new geneTree */
 
 void geneTreeFree(struct geneTree **pEl);
 /* Free a single dynamically allocated geneTree such as created
  * with geneTreeLoad(). */
 
 void geneTreeFreeList(struct geneTree **pList);
 /* Free a list of dynamically allocated geneTree's */
 
 void geneTreeOutput(struct geneTree *el, FILE *f, char sep, char lastSep);
 /* Print out geneTree.  Separate fields with sep. Follow last field with lastSep. */
 
 #define geneTreeTabOut(el,f) geneTreeOutput(el,f,'\t','\n');
 /* Print out geneTree as a line in a tab-separated file. */
 
 #define geneTreeCommaOut(el,f) geneTreeOutput(el,f,',',',');
 /* Print out geneTree as a comma separated list including final comma. */
 
 /* -------------------------------- End autoSql Generated Code -------------------------------- */
 
 #endif /* GENETREE_H */