9c28afc6ca0b8e2b4404ab7a894925e8f5fcf62b hiram Thu Mar 21 11:11:54 2019 -0700 begin round of consolidation and simplification refs #18869 diff --git src/hg/hubApi/dataApi.h src/hg/hubApi/dataApi.h index 76fe829..3f7f837 100644 --- src/hg/hubApi/dataApi.h +++ src/hg/hubApi/dataApi.h @@ -32,37 +32,30 @@ #include "wiggle.h" #include "hubPublic.h" #ifdef USE_HAL #include "halBlockViz.h" #endif #define MAX_PATH_INFO 32 /* functions in hubApi.c */ struct hubPublic *hubPublicDbLoadAll(); struct dbDb *ucscDbDb(); /* return the dbDb table as an slList */ -struct slName *genomeList(struct trackHub *hubTop, struct trackDb **dbTrackList, char *selectGenome); -/* follow the pointers from the trackHub to trackHubGenome and around - * in a circle from one to the other to find all hub resources - * return slName list of the genomes in this track hub - * optionally, return the trackList from this hub for the specified genome - */ - /* functions in apiUtils.c */ void apiErrAbort(char *format, ...); /* Issue an error message in json format, and exit(0) */ struct jsonWrite *apiStartOutput(); /* begin json output with standard header information for all requests */ int tableColumns(struct sqlConnection *conn, struct jsonWrite *jw, char *table, char ***nameReturn, char ***typeReturn); /* return the column names, and their MySQL data type, for the given table * return number of columns (aka 'fields') */ struct trackHub *errCatchTrackHubOpen(char *hubUrl); /* use errCatch around a trackHub open in case it fails */