This function gets the versions of the different entities involved in the REST API requests. When accessing the Ensembl REST API, you are actually accessing three interconnected entities:
Ensembl databases (data
).
Perl API (software
).
REST API (rest
).
get_versioning(verbose = FALSE, warnings = TRUE)
verbose | Whether to be chatty. |
---|---|
warnings | Whether to print warnings. |
A named list of three elements: data
, software
and
rest
.
# Get the versions of the different entities involved in the REST API # requests. get_versioning()#> $data #> [1] 104 #> #> $software #> [1] 104 #> #> $rest #> [1] "14.1" #>