Nothing
extract_bioc_releases <- function(html) {
html <- as.character(html)
# Two-step extraction due to gregexec being available only since R 4.1.0
codes <- regmatches(
html,
gregexpr("<tr>\\s*<td.*?>\\d+\\.\\d+", html, perl = TRUE)
)[[1]]
regmatches(
codes,
regexpr("\\d+\\.\\d+", codes, perl = TRUE)
)
}
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.