Nothing
# LDlinkR::LDproxy
#' Explore proxy and putative functional variants for a
#' single query variant.
#'
#' @param snp an rsID or chromosome coordinate (e.g. "chr7:24966446"), one per query
#' @param pop a 1000 Genomes Project population, (e.g. YRI or CEU), multiple allowed, default = "CEU"
#' @param r2d either "r2" for LD R2 or "d" for LD D', default = "r2"
#' @param token LDlink provided user token, default = NULL, register for token at \url{https://ldlink.nih.gov/?tab=apiaccess}
#' @param file Optional character string naming a path and file for saving results. If file = FALSE, no file will be generated, default = FALSE.
#' @param genome_build Choose between one of the three options...`grch37` for genome build GRCh37 (hg19),
#' `grch38` for GRCh38 (hg38), or `grch38_high_coverage` for GRCh38 High Coverage (hg38) 1000 Genome Project
#' data sets. Default is GRCh37 (hg19).
#' @param win_size set base pair (bp) window size. Specify a value greater than or equal to zero and less than or
#' equal to 1,000,000bp. Default value is 500,000bp.
#' @param api_root Optional alternative root url for API.
#'
#' @return a data frame
#' @importFrom httr GET content stop_for_status http_error
#' @importFrom utils capture.output read.delim write.table
#' @export
#'
#' @examples
#' \dontrun{LDproxy("rs456", "YRI", "r2", token = Sys.getenv("LDLINK_TOKEN"))}
#'
LDproxy <- function(snp,
pop="CEU",
r2d="r2",
token=NULL,
file = FALSE,
genome_build = "grch37",
win_size = "500000",
api_root="https://ldlink.nih.gov/LDlinkRest") {
LD_config <- list(ldproxy.url=paste0(api_root,"/ldproxy"),
avail_pop=c("YRI","LWK","GWD","MSL","ESN","ASW","ACB",
"MXL","PUR","CLM","PEL","CHB","JPT","CHS",
"CDX","KHV","CEU","TSI","FIN","GBR","IBS",
"GIH","PJL","BEB","STU","ITU",
"ALL", "AFR", "AMR", "EAS", "EUR", "SAS"),
avail_ld=c("r2", "d"),
avail_genome_build=c("grch37", "grch38", "grch38_high_coverage"))
url <- LD_config[["ldproxy.url"]]
avail_pop <- LD_config[["avail_pop"]]
avail_ld <- LD_config[["avail_ld"]]
avail_genome_build <- LD_config[["avail_genome_build"]]
# ensure file option is a character string
file <- as.character(file)
# Define regular expressions used to check arguments for valid input below
rsid_pattern <- "^rs\\d{1,}"
# Syntax Description
# ^rs rsid starts with 'rs'
# \\d{1,} followed by 1 or more digits
chr_coord_pattern <- "(^chr)(\\d{1,2}|X|x|Y|y):(\\d{1,9})$"
# Syntax Description
# (^chr) chromosome coordinate starts with 'chr'
# (\\d{1,2}|X|x|Y|y) followed by one or two digits, 'X', 'x', 'Y', 'y', to designate chromosome
# : followed by a colon
# (\\d{1,9})$ followed by 1 to 9 digits only to the end of string
# Checking arguments for valid input
if(!(length(snp) == 1)) {
stop("Input is one variant only.")
}
if(!((grepl(rsid_pattern, snp, ignore.case = TRUE)) | (grepl(chr_coord_pattern, snp, ignore.case = TRUE)))) {
stop("Invalid query format for variant: ", snp, ".", sep="")
}
if(!(all(pop %in% avail_pop))) {
stop("Not a valid population code.")
}
if(length(pop) > 1) {
pop=paste(unlist(pop), collapse = "%2B")
}
if(!(r2d %in% avail_ld)) {
stop("Not a valid r2d. Enter 'r2' or 'd'.")
}
if(is.null(token)) {
stop("Enter valid access token. Please register using the LDlink API Access tab: https://ldlink.nih.gov/?tab=apiaccess")
}
# Ensure input for 'genome_build' is valid.
if(length(genome_build) > 1) {
stop("Invalid input. Please choose only one available genome build.")
}
if(!(all(genome_build %in% avail_genome_build))) {
stop("Not an available genome build.")
}
# first, ensure 'win_size' is type 'integer'
win_size <- as.integer(win_size)
if (!(win_size >= 0 & win_size <= 1000000))
{
stop(paste("Window size must be between 0 and 1000000 bp. Input window size was ", win_size, " bp.", sep=""))
} else {
# convert back to character
win_size <- as.character(win_size)
}
# Request body
body <- list(paste("var=", snp, sep=""),
paste("pop=", pop, sep=""),
paste("r2_d=", r2d, sep=""),
paste("window=", win_size, sep=""),
paste("genome_build=", genome_build, sep=""),
paste("token=", token, sep=""))
# URL query string
url_str <- paste(url, "?", paste(unlist(body), collapse = "&"), sep="")
# before 'GET command', check if LDlink server is up and accessible...
# if server is down pkg should fail gracefully with informative message (not error)
if (httr::http_error(url)) { # if server is down use message (and not an error)
message("The LDlink server is down or not accessible. Please try again later.")
return(NULL)
} else { # network is up then proceed
message("\nLDlink server is working...\n")
}
# GET command, request to the web server
raw_out <- httr::GET(url=url_str)
httr::stop_for_status(raw_out)
# Parse response object, raw_out
data_out <- read.delim(textConnection(httr::content(raw_out, "text", encoding = "UTF-8")), header=T, sep="\t") # Parse response object
# Check for error/warning in response data
if(grepl("error", data_out[1,1])) {
message(data_out[1,1])
return(as.data.frame(data_out[1,1]))
}
# Evaluate 'file' option
if (file == FALSE) {
return(data_out)
} else if (is.character(file)) {
write.table(data_out, file = file, quote = F, row.names = F, sep = "\t")
cat(paste("\nFile saved to ",file,".", sep=""))
return(data_out)
}
}
############################## End Function ##############################
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.