Entering edit mode
6.9 years ago
hassanlou110
▴
40
I want to uninstall Bioconductor affycoretools package and reinstall it, who can help me?
I want to uninstall Bioconductor affycoretools package and reinstall it, who can help me?
Remove a package with remove.packages()
e.g.
remove.packages("affycoretools")
Affycoretools is a Bioconductor pacakge, so reinstallation needs their install script / the BiocInstaller package e.g.
source("https://bioconductor.org/biocLite.R")
biocLite("affycoretools")
Edit: To install this package, start R (version "4.0") and enter:
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("affycoretools")
Go to the Packages in right bottom corner of Rstudio, sear the package name and click on the adjacent X icon to remove it.
Reinstall the package from Bioconductor/CRAN.
##Bioconductor
source("https://bioconductor.org/biocLite.R")
biocLite("affycoretools")
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
You can try to update the already existing package.