
Fetch Bioconductor Package Information
Source:R/get_bioconductor_data.R
fetch_bioconductor_package_info.RdThis function retrieves information about a specific Bioconductor package for a given Bioconductor version. It fetches the package details, such as version, source package URL, and archived versions if available.
Value
A list containing package details, including the latest version, package URL, source package link, and any archived versions if available. Returns `FALSE` if the package does not exist or cannot be retrieved.
Examples
if (FALSE) { # \dontrun{
info <- fetch_bioconductor_package_info("3.14", "GenomicRanges")
print(info)
} # }