20d72f662e55fd7c611413dbb471a3a2714b9684
hiram
  Thu Oct 10 14:09:53 2019 -0700
newly supported type wigMaf refs #23589

diff --git src/hg/hubApi/dataApi.h src/hg/hubApi/dataApi.h
index bc580df..3692443 100644
--- src/hg/hubApi/dataApi.h
+++ src/hg/hubApi/dataApi.h
@@ -211,28 +211,31 @@
 void bigColumnTypes(struct jsonWrite *jw, struct sqlFieldType *fiList,
     struct asObject *as);
 /* show the column types from a big file autoSql definitions */
 
 boolean trackHasData(struct trackDb *tdb);
 /* check if this is actually a data track:
  *	TRUE when has data, FALSE if has no data
  * When NO trackDb, can't tell at this point, will check that later
  */
 
 #define trackHasNoData(tdb) (!trackHasData(tdb))
 
 boolean protectedTrack(struct trackDb *tdb, char *trackName);
 /* determine if track is off-limits protected data */
 
+boolean isWiggleDataTable(char *type);
+/* is this a wiggle data track table */
+
 /* ######################################################################### */
 /*  functions in getData.c */
 
 void apiGetData(char *words[MAX_PATH_INFO]);
 /* 'getData' function, words[1] is the subCommand */
 
 /* ######################################################################### */
 /*  functions in list.c */
 
 void apiList(char *words[MAX_PATH_INFO]);
 /* 'list' function words[1] is the subCommand */
 
 #endif	/*	 DATAAPH_H	*/