biocPkgList | R Documentation |
The BiocViews-generated VIEWS
file is available
for Bioconductor release and devel repositories. It
contains quite a bit more information from the
package DESCRIPTION
files than the PACKAGES
file. In particular, it contains biocViews
annotations
and URLs for vignettes and developer URLs.
biocPkgList(
version = BiocManager::version(),
repo = c("BioCsoft", "BioCexp", "BioCworkflows", "BioCann", "CRAN"),
addBiocViewParents = TRUE
)
version |
The requested Bioconductor version. Will
default to use the BiocManager defaults (i.e., |
repo |
|
addBiocViewParents |
|
Since packages are annotated with the most specific
views, the default functionality here is to add parent terms
for all views for each package. For example, in the bioCsoft
repository, all packages will have at least "Software" added
to their biocViews. If one wants to stick to only the most
specific terms, set addBiocViewParents
to FALSE
.
An object of class tbl_df
.
bpkgl <- biocPkgList(repo = "BioCsoft")
bpkgl
unlist(bpkgl[1,'Depends'], use.names = FALSE)
# Get a list of all packages that
# import "GEOquery"
library(dplyr)
bpkgl |>
filter(Package == 'GEOquery') |>
pull('importsMe') |>
unlist()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.