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 = "BioCsoft",
addBiocViewParents = TRUE
)
The requested Bioconductor version. Will
default to use the BiocManager defaults (i.e., version()
).
The requested Bioconductor repository. The default will be the Bioconductor software repository: BioCsoft. Available repos include: "BioCsoft", "BioCann", "BioCexp", "BioCworkflows", and "CRAN". Note that not all repos are available for all versions, particularly older versions (but who would use those, right?).
logical(), whether to add all biocViews parents to biocViews annotations.
An object of class tbl_df
.
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
.
bpkgl = biocPkgList()
#> 'getOption("repos")' replaces Bioconductor standard repositories, see
#> 'help("repositories", package = "BiocManager")' for details.
#> Replacement repositories:
#> CRAN: https://cloud.r-project.org
bpkgl
#> # A tibble: 2,230 × 47
#> Package Version Depends Suggests License MD5sum NeedsCompilation Title
#> <chr> <chr> <list> <list> <chr> <chr> <chr> <chr>
#> 1 a4 1.48.0 <chr [5]> <chr [6]> GPL-3 5d945… no "Aut…
#> 2 a4Base 1.48.0 <chr [2]> <chr [4]> GPL-3 b4727… no "Aut…
#> 3 a4Classif 1.48.0 <chr [2]> <chr [4]> GPL-3 44dc4… no "Aut…
#> 4 a4Core 1.48.0 <chr [1]> <chr [2]> GPL-3 5f0cb… no "Aut…
#> 5 a4Preproc 1.48.0 <chr [1]> <chr [4]> GPL-3 26836… no "Aut…
#> 6 a4Reporting 1.48.0 <chr [1]> <chr [2]> GPL-3 aace0… no "Aut…
#> 7 ABarray 1.68.0 <chr [1]> <chr [2]> GPL c2ae9… no "Mic…
#> 8 abseqR 1.18.0 <chr [1]> <chr [1]> GPL-3 … aef89… no "Rep…
#> 9 ABSSeq 1.54.0 <chr [2]> <chr [1]> GPL (>… e0e07… no "ABS…
#> 10 acde 1.30.0 <chr [2]> <chr [2]> GPL-3 7902a… no "Art…
#> # ℹ 2,220 more rows
#> # ℹ 39 more variables: Description <chr>, biocViews <list>, Author <list>,
#> # Maintainer <list>, git_url <chr>, git_branch <chr>, git_last_commit <chr>,
#> # git_last_commit_date <chr>, `Date/Publication` <chr>, source.ver <chr>,
#> # win.binary.ver <chr>, `mac.binary.big-sur-x86_64.ver` <chr>,
#> # `mac.binary.big-sur-arm64.ver` <chr>, vignettes <list>,
#> # vignetteTitles <list>, hasREADME <chr>, hasNEWS <chr>, hasINSTALL <chr>, …
unlist(bpkgl[1,'Depends'])
#> Depends1 Depends2 Depends3 Depends4 Depends5
#> "a4Base" "a4Preproc" "a4Classif" "a4Core" "a4Reporting"
# Get a list of all packages that
# import "GEOquery"
library(dplyr)
#>
#> Attaching package: ‘dplyr’
#> The following objects are masked from ‘package:stats’:
#>
#> filter, lag
#> The following objects are masked from ‘package:base’:
#>
#> intersect, setdiff, setequal, union
bpkgl %>%
filter(Package=='GEOquery') %>%
pull(c('importsMe'))
#> [[1]]
#> [1] "bigmelon" "ChIPXpress"
#> [3] "crossmeta" "DExMA"
#> [5] "EGAD" "EpiMix"
#> [7] "GEOexplorer" "minfi"
#> [9] "MoonlightR" "phantasus"
#> [11] "recount" "SRAdb"
#> [13] "BeadArrayUseCases" "BioPlex"
#> [15] "GSE13015" "healthyControlsPresenceChecker"
#> [17] "easyDifferentialGeneCoexpression" "geneExpressionFromGEO"
#> [19] "MetaIntegrator" "seeker"
#>