ab076cf0a98938e33c5e76b251f8ed1110c4923c
kate
  Thu Oct 22 16:51:00 2015 -0700
Improve display for non-log transformed by adding max view limit. refs #15645

diff --git src/hg/inc/gtexUi.h src/hg/inc/gtexUi.h
index 7b8b56e..6bbbeee 100644
--- src/hg/inc/gtexUi.h
+++ src/hg/inc/gtexUi.h
@@ -1,40 +1,41 @@
 /* gtexUi - GTEx (Genotype Tissue Expression) tracks */
 
 /* Copyright (C) 2015 The Regents of the University of California 
  * See README in this or parent directory for licensing information. */
 #ifndef GTEXUI_H
 #define GTEXUI_H
 
 /* Color scheme */
 #define GTEX_COLORS                     "colorScheme"
 #define GTEX_COLORS_RAINBOW             "rainbow"
 
 /* Color scheme from GTEX papers and portal */
 #define GTEX_COLORS_GTEX                "gtex"
 #define GTEX_COLORS_DEFAULT             GTEX_COLORS_GTEX
 
 /* Data transform */
 #define GTEX_LOG_TRANSFORM              "logTransform"
 #define GTEX_LOG_TRANSFORM_DEFAULT      TRUE
 
 /* Viewing limits */
 #define GTEX_MAX_LIMIT                  "maxLimit"
-/* Get default from gtexInfo table */
+#define GTEX_MAX_LIMIT_DEFAULT          100
+/* TODO: Get default from gtexInfo table */
 
 /* Sample selection and comparison */
 #define GTEX_SAMPLES                    "samples"
 #define GTEX_SAMPLES_ALL                "all"
 #define GTEX_SAMPLES_COMPARE_SEX        "sex"
 #define GTEX_SAMPLES_DEFAULT            GTEX_SAMPLES_ALL
 
 #define GTEX_SAMPLES_COMPARE_AGE        "age"
 #define GTEX_COMPARE_AGE_YEARS          "years"
 #define GTEX_COMPARE_AGE_DEFAULT        50
 
 /* Graph type */
 #define GTEX_GRAPH              "graphType"
 #define GTEX_GRAPH_RAW          "raw"
 #define GTEX_GRAPH_NORMAL       "normalized"
 #define GTEX_GRAPH_DEFAULT      GTEX_GRAPH_RAW
 
 #endif /* GTEXUI_H */