src/hg/lib/hgMaf.c 1.15
1.15 2010/05/11 01:43:30 kent
Refactoring to split the trackDb.tableName field into separate track and table fields. Similarly track.mapName field goes to the same track and table fields.
Index: src/hg/lib/hgMaf.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/lib/hgMaf.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -b -B -U 4 -r1.14 -r1.15
--- src/hg/lib/hgMaf.c 9 Apr 2010 00:12:00 -0000 1.14
+++ src/hg/lib/hgMaf.c 11 May 2010 01:43:30 -0000 1.15
@@ -423,9 +423,9 @@
char *wigMafWiggleVar(struct trackDb *tdb, struct consWiggle *wig)
/* Return name of cart variable for this cons wiggle */
{
char option[128];
-safef(option, sizeof option, "%s.cons.%s", tdb->tableName, wig->leftLabel);
+safef(option, sizeof option, "%s.cons.%s", tdb->track, wig->leftLabel);
return (cloneString(option));
}
struct consWiggle *consWiggleFind(char *db,struct trackDb *parent,char *table)