GangLiLab / genekitr

🧬 Gene analysis toolkit based on R
https://www.genekitr.fun
GNU General Public License v3.0
53 stars 7 forks source link

load older versions of the package from CRAN #18

Closed Natpod closed 1 year ago

Natpod commented 1 year ago

hello, is there any way one can load older versions of the genekitr package? thank you

reedliu commented 1 year ago
# for example version 1.1.9
packageurl <- "https://cran.r-project.org/src/contrib/Archive/genekitr/genekitr_1.1.9.tar.gz"
install.packages(packageurl, repos=NULL, type="source")
Natpod commented 1 year ago

thank you!