0409c6eb8269e2d9dec3afda9790e57635ab7be2 kent Tue Mar 20 17:13:17 2012 -0700 Oops forgot to include this .h file in the fix for #7222 diff --git src/hg/hgTables/hgTables.h src/hg/hgTables/hgTables.h index ca86ffd..60bd67a 100644 --- src/hg/hgTables/hgTables.h +++ src/hg/hgTables/hgTables.h @@ -22,31 +22,31 @@ char *chrom; /* Chromosome. */ int start; /* Zero-based. */ int end; /* Non-inclusive. */ boolean fullChrom; /* If TRUE it's full chromosome. */ char *name; /* possibly the encode region name */ }; /* Global variables - generally set during initialization and then read-only. */ extern struct cart *cart; /* This holds cgi and other variables between clicks. */ extern struct hash *oldVars; /* The cart before new cgi stuff added. */ extern char *genome; /* Name of genome - mouse, human, etc. */ extern char *database; /* Current database, often but not always dbDatabase. */ extern char *freezeName; /* Date of assembly. */ extern struct trackDb *fullTrackList; /* List of all tracks in database. */ extern struct hash *fullTrackHash; /* Hash of tracks in fullTrackList keyed by ->track field. */ -extern struct hash *fullTrackAndSubtrackHash; /* All tracks and subtracks keyed by track field. */ +extern struct hash *fullTableToTdbHash; /* All tracks and subtracks keyed by ->table field. */ extern struct trackDb *forbiddenTrackList; /* List of tracks with 'tableBrowser off' setting. */ extern struct trackDb *curTrack; /* Currently selected track. */ extern struct grp *fullGroupList; /* List of all groups. */ extern struct grp *curGroup; /* Currently selected group. */ extern struct customTrack *theCtList; /* List of custom tracks. */ extern char *curTable; /* Current selected table. */ struct joiner *allJoiner; /* Info on how to join tables. */ /* --------------- HTML Helpers ----------------- */ void hPrintSpaces(int count); /* Print a number of non-breaking spaces. */ void writeHtmlCell(char *text); /* Write out a cell in an HTML table, making text not too big,