[Bioc-devel] Better instructions for updating BioC version

Maddy Griswold mgr|@wo|d @end|ng |rom n@no@tr|ng@com
Fri Jan 21 23:11:37 CET 2022


Hello,

We have received multiple inquiries about our package and documentation not lining up. We host documentation on a separate website that corresponds to the most recent Bioconductor release. This causes a headache for some users that aren't able to download the most recent version of the package from Bioconductor because they haven't updated their installer as the instructions and the actual code don't match. Is it possible to update the documentation on BioConductor to explicitly show that after a release, users have to update their BiocManager? This information is buried in the documentation but seems like it should be front and center.

The current code on each package page looks like this:
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")

BiocManager::install("SpatialDecon")

But could this line of code be added before the actual installation of the package to ensure the most up to date package is installed?  BiocManager::install(version = "3.14").

So each package's install instructions would look like this and the version number would be updated with every release:
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")

BiocManager::install(version = "3.14")
BiocManager::install("SpatialDecon")

Thanks,
Maddy Griswold





	[[alternative HTML version deleted]]



More information about the Bioc-devel mailing list