R/GVS_sources.R

Defines functions GVS_sources

Documented in GVS_sources

#'Get information on sources used by the GVS
#'
#'Return metadata about the current GVS sources
#' @param ... Additional arguments passed to internal functions.
#' @return Dataframe containing information about the sources used in the current GVS version.
#' @export
#' @examples {
#' sources <- GVS_sources()
#' }
#'
GVS_sources <- function(...){

  # Check for internet access
  if (!check_internet()) {
    message("This function requires internet access, please check your connection.")
    return(invisible(NULL))
  }

  return(gvs_core(mode = "sources",...))

}#NSR sources

Try the GVS package in your browser

Any scripts or data that you put into this service are public.

GVS documentation built on April 3, 2025, 10:03 p.m.