This function provides an input to select a transformation method.
transformationUI(
id,
label = "Transformation",
selected = "raw",
choices = list(None = "raw", log2 = "log2", `-log2` = "-log2", log10 = "log10",
`-log10` = "-log10", `Z score` = "zscore", `regularized log` = "rlog"),
transposeOptions = FALSE
)
The ID of the modules namespace.
A character vector of length one with the label for the selectInput
.
The initially selected value. See selectInput
.
Named list of available transformations. Possible transformations are list(`None` = "raw", `log2` = "log2", `-log2` = "-log2", `log10` = "log10", `-log10` = "-log10", `Z score` = "zscore", `regularized log` = "rlog") which is also the default.
Boolean value if transpose radioButtons are shown (Default = FALSE).
A list with HTML tags from tag
.