How to install?

The installation for R & RStudio requires the next dependencies

Install ADMETShiny from GitHub

Install from GitHub

How to install?

Two different forms for install this package..

The next steps:

Steps

  1. Install R and RStudio.

You could choice your R & Rstudio version f your operative system.

I recommended install RStudio for the easyful user interface

  1. To enjoy all the features of ADMETShiny, we suggest you install all the dependencies listed below.
#All dependencies:
install.packages(c("shiny", "DT", "ggplot2", "dplyr", "magrittr", "grid","graphics","utils","grDevices","stats","rcdk", "webchem", "fmsb", "Rtsne", "ggrepel", "fingerprint", "cluster", "GGally", "openxlsx", "knitr", "rmarkdown", "testthat", "uwot", "viridisLite"))

Note: For users, the testthat package is not required. However, if you would like to contribute to the debugging, testing, or improvement of ADMETShiny, please feel free to send your suggestions through of the e-mail or Feedback page.

  1. For the “rCDK” & Webchem package is necessary the follow dependence:

Please, consider this option for the all features.

Java SE Development Kit Downloads by Oracle

  1. Installation to the package in your environment with the follow steps:

You could install the package with “remotes” :

#Write in the R & RStudio console:
install.packages("remotes")
#Call the package
library(remotes)
#Follow this step: 
remotes::install_github("xavierclementegarcia/admetshiny-package")

Remember that the correct proficiency of the Shiny app is required JDK & the others dependencies listing above.

  1. Launch ADMETShiny.
#Call to the package
library("admetshiny")
#For run the Shiny app
admetshiny::run_app()
Back to top