439e1a973aaf1632845dfe0bca88d35a122d53fb
braney
Thu Mar 1 10:50:31 2018 -0800
put out pixel range for custom composites in hgTrackUi
diff --git src/hg/lib/hui.c src/hg/lib/hui.c
index 092ea3e..e9b1fc9 100644
--- src/hg/lib/hui.c
+++ src/hg/lib/hui.c
@@ -5160,33 +5160,30 @@
}
printf("
Type of graph: | ");
safef( option, sizeof(option), "%s.%s", name, LINEBAR );
wiggleGraphDropDown(option, lineBar);
if (boxed)
{
printf(" | ");
printf("Graph configuration help",WIGGLE_HELP_PAGE);
}
puts(" |
");
printf("Track height: | ");
safef(option, sizeof(option), "%s.%s", name, HEIGHTPER );
cgiMakeIntVarWithLimits(option, defaultHeight, "Track height",0, minHeightPixels, maxHeightPixels);
-if (isCustomComposite(tdb))
- printf("pixels");
-else
printf("pixels (range: %d to %d)",
minHeightPixels, maxHeightPixels);
puts(" |
");
printf("Data view scaling: | ");
safef(option, sizeof(option), "%s.%s", name, AUTOSCALE );
wiggleScaleDropDown(option, autoScale);
wiggleScaleDropDownJavascript(name);
safef(option, sizeof(option), "%s.%s", name, ALWAYSZERO);
printf("Always include zero: ");
wiggleAlwaysZeroDropDown(option, alwaysZero);
puts(" |
");
printf("Vertical viewing range: | "
" min: ", name);
|
---|