Nothing
#' Get Logo file name
#'
## Copyright(c) 2017-2024 R. Mark Sharp
## This file is part of nprcgenekeepr
#'
#' @return A character vector of length one having the name of the logo file
#' used in the \code{Input} tab. A warning is returned if the configuration
#' file is not found.
#'
#' @export
#' @examples
#' result <- tryCatch(
#' {
#' getLogo()
#' },
#' warning = function(w) {
#' print(paste0(
#' "Warning in getLogo: ", w, ". File is to be ",
#' suppressWarnings(getLogo())$file
#' ))
#' },
#' error = function(e) {
#' print(paste0("Error in in getLogo: ", e))
#' }
#' )
getLogo <- function() {
logo <- list()
if (getSiteInfo()$center == "SNPRC") {
logo$file <- "../nprcgenekeepr_2_color_logo.jpg"
logo$height <- 200L
logo$width <- 350L
} else {
logo$file <- "../nprcgenekeepr_2_color_logo.jpg"
logo$height <- 200L
logo$width <- 350L
}
logo
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.