rdocumentation-2.0 icon indicating copy to clipboard operation
rdocumentation-2.0 copied to clipboard

[bug] FindMyFriends documentation outdate

Open currocam opened this issue 4 years ago • 0 comments

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")

currocam avatar Nov 14 '21 11:11 currocam