07769f5e62216c125dc90df08dac7a90402c3fa4
markd
  Mon Jun 22 12:54:40 2015 -0700
add geneId to transmap gene table, with backwards compatibilty for current transmap tracks (RM 14574)

diff --git src/hg/inc/transMapSrc.h src/hg/inc/transMapSrc.h
index 0ddd8f6..6fa09d5 100644
--- src/hg/inc/transMapSrc.h
+++ src/hg/inc/transMapSrc.h
@@ -1,27 +1,29 @@
 /* transMapSrc.h was originally generated by the autoSql program, which also 
  * generated transMapSrc.c and transMapSrc.sql.  This header links the database and
  * the RAM representation of objects. */
 
 /* Copyright (C) 2008 The Regents of the University of California 
  * See README in this or parent directory for licensing information. */
 
 #ifndef TRANSMAPSRC_H
 #define TRANSMAPSRC_H
 
 #define TRANSMAPSRC_NUM_COLS 8
 
+extern char *transMapSrcCommaSepFieldNames;
+
 struct transMapSrc
 /* shared about transMap source alignments */
     {
     struct transMapSrc *next;  /* Next in singly linked list. */
     char db[17];	/* source db */
     char *id;	/* id of source alignment */
     char *chrom;	/* chromosome */
     unsigned chromStart;	/* chrom start location */
     unsigned chromEnd;	/* chrom end location */
     char strand;	/* strand */
     float ident;	/* identity */
     float aligned;	/* fraction of sequence aligned */
     };
 
 void transMapSrcStaticLoad(char **row, struct transMapSrc *ret);