MaayanLab / enrichr_issues

5 stars 3 forks source link

package not available on CRAN #98

Closed billila closed 2 hours ago

billila commented 3 hours ago

Hi! I wanted to ask if the enrichR package will become available on CRAN again. Thank you!

https://cran.r-project.org/web/packages/enrichR/index.html

AviMaayan commented 2 hours ago

You can try to use this R library that we created: https://github.com/MaayanLab/speedr

AviMaayan commented 2 hours ago

The enrichR library was not created by us, but I will look into why it was archived...

billila commented 2 hours ago

thanks for your answer!

u8sand commented 2 hours ago

The actual repo of enrichR (the R package) is https://github.com/wjawaid/enrichR

an outstanding PR fixes it https://github.com/wjawaid/enrichR/pull/84

but the maintainer needs to accept it and redeploy to CRAN. You can install it straight off of github following their instructions (with devtools)

devtools can be installed from CRAN if you don't already have it

install.packages("devtools")
library(devtools)
install_github("wjawaid/enrichR")
billila commented 2 hours ago

thanks for your help!