[bug] FindMyFriends documentation outdate
currocam opened this issue · 0 comments
currocam commented
The documentation on how to install the package is outdated. It should be update as follows.
Documentation entry
GitHub README
Observed behavior
FindMyFriends is an R package for doing pangenomic analyses on microbial genomes. It is released as part of the Bioconductor project and can be installed with the biocLite() function:
source("https://bioconductor.org/biocLite.R")
biocLite("FindMyFriends")Expected behavior
FindMyFriends is an R package for doing pangenomic analyses on microbial genomes. It is released as part of the Bioconductor project and can be installed with the BiocManager::install() function:
if (!requireNamespace("BiocManager", quietly=TRUE))
install.packages("BiocManager")
BiocManager::install("FindMyFriends")