8eeb78ac45c78f207aa7d2c3816e13b2d950378f galt Tue Sep 25 16:14:31 2012 -0700 setting the track limits to be more liberal as advised by Jim Kent diff --git src/hg/hgTracks/simpleTracks.c src/hg/hgTracks/simpleTracks.c index 5a48a5d..b98734d 100644 --- src/hg/hgTracks/simpleTracks.c +++ src/hg/hgTracks/simpleTracks.c @@ -153,31 +153,31 @@ Color darkBlueColor = 0; Color greenColor = 0; Color darkGreenColor = 0; boolean exprBedColorsMade = FALSE; /* Have the shades of Green, Red, and Blue been allocated? */ int maxRGBShade = EXPR_DATA_SHADES - 1; 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; int z; int maxCount; int bestColor; -int maxItemsInFullTrack = 250; /* Maximum number of items displayed in full */ +int maxItemsInFullTrack = 1000; /* Maximum number of items displayed in full */ 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. */ char *chromName; /* Name of chromosome sequence . */ char *database; /* Name of database we're using. */ char *organism; /* Name of organism we're working on. */ int winStart; /* Start of window in sequence. */ int winEnd; /* End of window in sequence. */ char *position = NULL; /* Name of position. */ int trackTabWidth = 11; int leftLabelWidthDefaultChars = 17; /* default number of characters allowed for left label */ int leftLabelWidthChars = 17; /* number of characters allowed for left label */ int insideX; /* Start of area to draw track in in pixels. */