From 1955f55735483e5b90ad169e481f324f608e9dd8 Mon Sep 17 00:00:00 2001 From: Schultheis Date: Tue, 23 Jul 2019 14:43:01 +0200 Subject: [PATCH] fixed typo --- R/i2dash.R | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/R/i2dash.R b/R/i2dash.R index 8a8cd24..7021f70 100644 --- a/R/i2dash.R +++ b/R/i2dash.R @@ -1,7 +1,7 @@ #' Prepare a heatmap to be rendered with the i2dash package. #' #' @param object A \linkS4class{i2dash::i2dashboard} object. -#' @param countTable A matrix with features as rows and observations as columns. The rownames and columnnames should be provided and are used in buiding the heatmap. +#' @param countTable A matrix with features as rows and observations as columns. The rownames and columnnames should be provided and are used in building the heatmap. #' @param group_by A vector with numerical values or a named list will be mapped to the y-axis. In case of a named list, a dropdown menu will be provided in the interactive mode. Note: The length of vectors x and y should be the same as well as the length of all vectors in case of a named list. #' @param compId (Optional) The component ID provided through add_component and used for linking components together. #' @param title (Optional) The title of the components chunk. @@ -22,7 +22,6 @@ heatmap_to_i2dash <- function(object, countTable, group_by, compId = NULL, title env_id <- paste0("env_", compId) } - # Create list if element is not a list already if (!is.list(group_by)) group_by <- list(group_by)