Skip to content
/ toxpiR Public

toxpiR R package for the Toxicological Priority Index (ToxPi) algorithm.

License

Notifications You must be signed in to change notification settings

ToxPi/toxpiR

Folders and files

NameName
Last commit message
Last commit date

Latest commit

4693c68 · Aug 29, 2024

History

59 Commits
Aug 7, 2024
Aug 29, 2024
Feb 2, 2022
Feb 2, 2022
Aug 29, 2024
Feb 10, 2022
Aug 16, 2024
Aug 29, 2024
Feb 10, 2022
Feb 2, 2022
Feb 2, 2022
Feb 10, 2022
Aug 16, 2024
Feb 2, 2022
Aug 7, 2024
Aug 16, 2024
Aug 16, 2024
Feb 2, 2022
Feb 2, 2022

Repository files navigation

toxpiR

Project Status: Active – The project has reached a stable, usable state and is being actively developed. R-CMD-check cran-version downloads codecov

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):

remotes::install_github("ToxPi/toxpiR",
                        dependencies = TRUE, 
                        build_vignettes = TRUE)

Note: Building packages with vignettes requires the package
"pandoc" to be installed.