src/hg/hgGenome/hgGenome.h 1.38
1.38 2009/10/12 22:43:34 galt
getting it to be a little more consistent, better code organization, and fixes problem where custom bedGraph track was not working
Index: src/hg/hgGenome/hgGenome.h
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/hgGenome/hgGenome.h,v
retrieving revision 1.37
retrieving revision 1.38
diff -b -B -U 4 -r1.37 -r1.38
--- src/hg/hgGenome/hgGenome.h 10 Apr 2009 20:02:13 -0000 1.37
+++ src/hg/hgGenome/hgGenome.h 12 Oct 2009 22:43:34 -0000 1.38
@@ -290,8 +290,18 @@
boolean isBedGraph(char *table);
/* Return TRUE if table is specified as a bedGraph in the current database's
* trackDb. */
+char *getBedGraphType(char *table);
+/* Return bedgraph track type if table is a bedGraph in the current database's
+ * trackDb. */
+
+char *getBedGraphField(char *table);
+/* get the bedGraph dataValue field name from the track type */
+
+int getBedGraphColumnNum(char *table);
+/* get the bedGraph dataValue column num from the track type */
+
void wiggleMinMax(struct trackDb *tdb, double *min, double *max);
/* obtain wiggle data limits from trackDb or cart or settings */
struct wiggleDataStream *wigChromRawStats(char *chrom);
@@ -324,9 +334,5 @@
boolean isChromGraph(struct trackDb *track);
/* Return TRUE if it's a chromGraph track */
-char *getBedGraphField(char *table, char *type);
-/* get the bedGraph dataValue field name from the track type */
-
-
#endif /* HGGENOME_H */