R package for the Toxicological Priority Index (ToxPi) prioritization algorithm. Package developed and maintained by the Reif Lab.
Installation
Current stable release (CRAN):
install.packages("toxpiR")
Current stable release (Build from GitHub):
remotes::install_github("ToxPi/toxpiR",
dependencies = TRUE)
Note: Users may need to ensure "remotes" package and packages
requiring "BiocManager" are installed before building package.
if (!require(remotes)) install.packages("remotes")
if (!require(BiocManager, quietly = TRUE)) {
install.packages("BiocManager")
}
BiocManager::install(c("S4Vectors","BiocGenerics"))
Current stable release (Build from GitHub with vignettes):