0a355b48d73c07ba33a04bf1dfd7266f12d0cafe braney Sat Mar 5 17:24:04 2022 -0800 scale up the size of a trackDb we'll accept diff --git src/hg/inc/trackHub.h src/hg/inc/trackHub.h index cd0c617..e40505b 100644 --- src/hg/inc/trackHub.h +++ src/hg/inc/trackHub.h @@ -11,31 +11,31 @@ * How you use the routines here most commonly is as so: * struct trackHub *hub = trackHubOpen(hubRaUrl); * struct trackHubGenome *hubGenome = trackHubFindGenome(hub, "hg19"); * struct trackDb *tdbList = trackHubTracksForGenome(hub, hubGenome); * // do something with tdbList * trackHubClose(&hub); * Note that the tdbList returned does not have the parent/subtrack pointers set. * It is just a simple list of tracks, not a tree. */ #ifndef TRACKHUB_H #define TRACKHUB_H #include "dystring.h" -#define MAX_HUB_TRACKDB_FILE_SIZE 64*1024*1024 +#define MAX_HUB_TRACKDB_FILE_SIZE 256*1024*1024 #define MAX_HUB_GROUP_FILE_SIZE 16*1024*1024 #define MAX_HUB_GENOME_FILE_SIZE 64*1024*1024 struct trackHub /* A track hub. */ { struct trackHub *next; struct hubConnectStatus *hubStatus; /* Pointer to our hubConnectStatus structure, if any. */ char *url; /* URL of hub.ra file. */ struct trackHubGenome *genomeList; /* List of associated genomes. */ struct hash *genomeHash; /* Hash of genomeList keyed by genome name. */ struct hash *settings; /* Settings from hub.ra file. */