Open
Description
I love the package, but find it hard to find which overlaps exist. For example, I wanted to make sure the name adept
wasn't taken, and I searched and found it on GitHub (it's the package I was working on). But to find the link to the GitHub, I needed to know which slot github
was. Is there an accessor function or should I send a PR with named list elements for output of available
?
res = available::available("adept", browse = FALSE)
#> Warning: 'BiocInstaller' and 'biocLite()' are deprecated, use the 'BiocManager'
#> CRAN package instead.
res[[4]]
#> Available on GitHub: ✖
names(res)
#> NULL
slotNames(res)
#> character(0)
names(res[[4]])
#> [1] "available" "close"
unlist(res[[4]])
#> available
#> "FALSE"
#> close.pkg_name
#> "adept"
#> close.title
#> "Adaptive Empirical Pattern Transformation "
#> close.url
#> "https://github.com/martakarass/adept"
#> close.pkg_location
#> "martakarass/adept"
#> close.pkg_org
#> "martakarass"
#> close.distance
#> "0"
Created on 2019-02-28 by the reprex package (v0.2.1)