bde2772a528ec924467b6e42ed6e504546d5332f kent Sun Feb 17 10:47:45 2013 -0800 Changing default value of aggregate to NONE rather than transparent. diff --git src/hg/lib/wiggleCart.c src/hg/lib/wiggleCart.c index 454e7d0..7ea784f 100644 --- src/hg/lib/wiggleCart.c +++ src/hg/lib/wiggleCart.c @@ -730,26 +730,26 @@ * Absolute limits are defined by minLimit, maxLimit in the trackDb * default to 0 and 1000 if not present * User requested limits are defined in the cart * Default opening display limits are optionally defined with the * defaultViewLimits declaration from trackDb * or viewLimits from custom tracks * (both identifiers work from either custom or trackDb) *****************************************************************************/ { wigFetchMinMaxYWithCart(theCart,tdb,name,min,max,tDbMin,tDbMax,0,NULL); } /* void wigFetchMinMaxYWithCart() */ char *wigFetchAggregateValWithCart(struct cart *cart, struct trackDb *tdb) /* Return aggregate value for track. */ { -return cartOrTdbString(cart, tdb, "aggregate", WIG_AGGREGATE_TRANSPARENT); +return cartOrTdbString(cart, tdb, "aggregate", WIG_AGGREGATE_NONE); } boolean wigIsOverlayTypeAggregate(char *aggregate) /* Return TRUE if aggregater type is one of the overlay ones. */ { if (aggregate == NULL) return FALSE; return differentString(aggregate, WIG_AGGREGATE_NONE); }