#' @title
#' get /search/variants/\{searchResultsDbId\}
#'
#' @description
#' Get the results of a `Variants` search request
#'
#' @param con list; required: TRUE; BrAPI connection object
#' @param searchResultsDbId character; required: TRUE; Unique identifier which
#' references the search results
#' @param pageToken character; required: FALSE; Used to request a specific page
#' of data to be returned. Tokenized pages are for large data sets, which can
#' not be efficiently broken into indexed pages. Use the `nextPageToken` and
#' `prevPageToken` from a prior response to construct a query and move to the
#' next or previous page respectively.
#' @param pageSize integer; required: FALSE; The size of the pages to be
#' returned. Default is `1000`.
#'
#' @details Returns the result of the advanced searching for the `Variants`
#' resource.
#'
#' @return data.frame
#'
#' @author Maikel Verouden
#'
#' @references \href{https://app.swaggerhub.com/apis/PlantBreedingAPI/BrAPI-Genotyping/2.0#/Variants/get_search_variants__searchResultsDbId_ }{BrAPI SwaggerHub}
#'
#' @family brapi-genotyping
#' @family Variants
#'
#' @examples
#' \dontrun{
#' con <- brapi_db()$testserver
#' con[["token"]] <- "YYYY"
#' # Saved or Asynchronous Search Response Example
#' out <-
#' brapi_post_search_variants(con = con,
#' callSetDbIds = c("callset01",
#' "callset02"),
#' start = 0,
#' end = 1000,
#' variantDbIds = c("variant01",
#' "variant02"),
#' variantSetDbIds = "variantset1",
#' pageSize = 1000)
#' searchResultsDbId <- out$searchResultsDbId
#' brapi_get_search_variants_searchResultsDbId(con = con,
#' searchResultsDbId = searchResultsDbId)
#' }
#'
#' @export
brapi_get_search_variants_searchResultsDbId <- function(con = NULL,
searchResultsDbId = '',
pageToken = '',
pageSize = 1000) {
## Create a list of used arguments
usedArgs <- brapirv2:::brapi_usedArgs(origValues = FALSE)
## Check if BrAPI server can be reached given the connection details
brapi_checkCon(con = usedArgs[["con"]], verbose = FALSE)
## Check validity of used and required arguments
brapirv2:::brapi_checkArgs(usedArgs, reqArgs = "searchResultsDbId")
## Obtain the call url
callurl <- brapirv2:::brapi_GET_callURL(usedArgs = usedArgs,
callPath = "/search/variants/{searchResultsDbId}",
reqArgs = "searchResultsDbId",
packageName = "BrAPI-Genotyping",
callVersion = 2.0)
try({
## Make the call and receive the response
resp <- brapirv2:::brapi_GET(url = callurl, usedArgs = usedArgs)
## Check call status
while (httr::status_code(resp) == 202) {
Sys.sleep(5)
resp <- brapirv2:::brapi_GET(url = callurl, usedArgs = usedArgs)
status <- jsonlite::fromJSON(httr::content(x = resp,
as = "text",
encoding = "UTF-8"))[["metadata"]][["status"]]
if (length(status) != 0) {
brapirv2:::brapi_message(msg = paste0(status[["message"]], "\n"))
}
}
if (httr::status_code(resp) == 200) {
## Extract the content from the response object in human readable form
cont <- httr::content(x = resp, as = "text", encoding = "UTF-8")
## Convert the content object into a data.frame
out <- brapirv2:::brapi_result2df(cont, usedArgs)
}
})
## Set class of output
class(out) <- c(class(out), "brapi_get_search_variants_searchResultsDbId")
## Show pagination information from metadata
brapirv2:::brapi_serverinfo_metadata(cont)
return(out)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.