biocpkgtools_db | R Documentation |
A static snapshot of all Bioconductor packages from biocPkgList. Last updated: Sept. 06 2023
data("biocpkgtools_db")
An object of class data.table
(inherits from data.frame
) with 100 rows and 53 columns.
as_ascii <- function(dt,
cols=names(dt)){
cols <- cols[cols
func <- function(v){
Encoding(v) <- "latin1"
iconv(v, "latin1", "UTF-8")
}
for(col in cols){
if(is.character(dt[[col]])){
dt[[col]] <- func(dt[[col]])
}
}
return(dt)
}
biocpkgtools_db <- get_description_repo_biocpkgtools(repo="BioCsoft")
biocpkgtools_db <- as_ascii(biocpkgtools_db[seq(100)])
usethis::use_data(biocpkgtools_db, overwrite = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.