R/listArchiveURL.R

Defines functions listArchiveURL listArchiveUrl

Documented in listArchiveUrl listArchiveURL

#' List WebGestalt Servers
#'
#' List available WebGestalt servers.
#'
#'
#' @return A data frame of available servers.
#'
#' @importFrom readr read_tsv
#' @export
#' @aliases listArchiveURL
#'
listArchiveUrl <- function(){
	archiveUrl <- read_tsv("https://www.webgestalt.org/archiveURL.txt", col_names=FALSE)
	return(archiveUrl)
}

#' @export
listArchiveURL <- function(...) {
	warning("Function listArchiveURL is deprecated and changed to listArchiveUrl!\n")
	return(listArchiveUrl(...))
}

Try the WebGestaltR package in your browser

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

WebGestaltR documentation built on June 7, 2023, 6:10 p.m.