f23ef9aa1e46695a8e0ed3eaf7003158eab21e33 braney Mon Mar 11 07:53:23 2024 -0700 up the maximum maxItems to 100,000 diff --git src/hg/hgTracks/simpleTracks.c src/hg/hgTracks/simpleTracks.c index 0399fbc..1e0a82f 100644 --- src/hg/hgTracks/simpleTracks.c +++ src/hg/hgTracks/simpleTracks.c @@ -171,31 +171,31 @@ int maxRGBShade = EXPR_DATA_SHADES - 1; Color scafColor[SCAF_COLORS+1]; /* declare colors for scaffold coloring, +1 for unused scaffold 0 color */ Color chromColor[CHROM_COLORS+1]; /* Declare colors for chromosome coloring, +1 for unused chrom 0 color */ /* Have the 3 shades of 8 chromosome colors been allocated? */ boolean chromosomeColorsMade = FALSE; boolean doPliColors = FALSE; /* have the 10 scaffold colors been allocated */ static boolean scafColorsMade = FALSE; int maxItemsInFullTrack = 1000; /* Maximum number of items displayed in full */ -int maxItemsPossible = 10000; /* Maximum possible value for maxItems */ +int maxItemsPossible = 100000; /* Maximum possible value for maxItems */ int maxItemsToUseOverflowDefault = 10000; /* # of items to allow overflow mode*/ /* These variables persist from one incarnation of this program to the * next - living mostly in the cart. */ // multi-window variables global to hgTracks struct window *windows = NULL; // list of windows in image struct window *currentWindow = NULL; bool trackLoadingInProgress; // flag to delay ss layout until all windows are ready. int fullInsideX; // full-image insideX int fullInsideWidth; // full-image insideWidth struct virtRegion *virtRegionList = NULL; // list of regions in virtual chrom struct virtChromRegionPos *virtChrom = NULL; // virtual chrom array of positions and regions int virtRegionCount = 0; // number of regions in virtual chromosome