src/hg/hgTables/schema.c 1.53
1.53 2009/03/10 01:25:24 kent
First cut of bigWig integration. Handles data point and stats output in cases where there are no filters or intersections going.
Index: src/hg/hgTables/schema.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/hgTables/schema.c,v
retrieving revision 1.52
retrieving revision 1.53
diff -b -B -U 4 -r1.52 -r1.53
--- src/hg/hgTables/schema.c 9 Oct 2008 00:04:32 -0000 1.52
+++ src/hg/hgTables/schema.c 10 Mar 2009 01:25:24 -0000 1.53
@@ -565,9 +565,9 @@
/* Show schema on custom track. */
{
struct customTrack *ct = lookupCt(table);
char *type = ct->tdb->type;
-if (startsWithWord("wig", type))
+if (startsWithWord("wig", type) || startsWithWord("bigWig", type))
showSchemaCtWiggle(table, ct);
else if (startsWithWord("chromGraph", type))
showSchemaCtChromGraph(table, ct);
else if (startsWithWord("bed", type) || startsWithWord("bedGraph", type))