getLogo: Get Logo file name

View source: R/getLogo.R

getLogoR Documentation

Description

Get Logo file name

Usage

getLogo()

Value

A character vector of length one having the name of the logo file used in the Input tab. A warning is returned if the configuration file is not found.

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))
  }
)

nprcgenekeepr documentation built on June 8, 2025, 10:55 a.m.