d7b8c8436b55a4f08f46a7caae8bf3ab88773f9f jcasper Fri May 17 13:40:41 2019 -0700 Changes in response to code review, refs #23481 diff --git src/hg/inc/hicUi.h src/hg/inc/hicUi.h index e2f2158..10632dc 100644 --- src/hg/inc/hicUi.h +++ src/hg/inc/hicUi.h @@ -4,42 +4,42 @@ * See README in this or parent directory for licensing information. */ #ifndef HIC_UI_H #define HIC_UI_H #include "hic.h" /* Number of bins to split score values into, also the number of gradient * steps in the color values from lowest to highest. 1024 is already overkill * for hex-valued colors. */ #define HIC_SCORE_BINS 1024 /* Cart variables */ -#define HIC_DRAW_MODE "drawmode" +#define HIC_DRAW_MODE "drawMode" #define HIC_DRAW_MODE_TRIANGLE "triangle" #define HIC_DRAW_MODE_SQUARE "square" #define HIC_DRAW_MODE_ARC "arc" #define HIC_DRAW_MODE_DEFAULT HIC_DRAW_MODE_SQUARE #define HIC_NORMALIZATION "normalization" #define HIC_RESOLUTION "resolution" #define HIC_DRAW_AUTOSCALE "autoscale" #define HIC_DRAW_MAX_VALUE "max" #define HIC_DRAW_MAX_VALUE_DEFAULT 100 #define HIC_DRAW_COLOR "color" -#define HIC_DRAW_BG_COLOR "bgcolor" +#define HIC_DRAW_BG_COLOR "bgColor" /* Default to drawing red on a white background */ #define HIC_DRAW_COLOR_DEFAULT "#ff0000" #define HIC_DRAW_BG_COLOR_DEFAULT "#ffffff" void hicCfgUi(char *database, struct cart *cart, struct trackDb *tdb, char *track, char *title, boolean boxed); /* Draw the list of track configuration options for Hi-C tracks */ char *hicUiFetchResolution(struct cart *cart, char *track, struct hicMeta *meta); /* Return the current resolution selection, or the default if none * has been selected. */ char *hicUiFetchNormalization(struct cart *cart, char *track, struct hicMeta *meta); /* Return the current normalization selection, or the default if none