Chapter 2 Install
Here, we have provided several ways to install UCSCXenaShiny R package. You can see the detailed instruction and troubleshooting information from the README file of our Github project.
2.1 CRAN
# Online
install.packages("UCSCXenaShiny")
## or specific repos
install.packages("UCSCXenaShiny", repos = c("https://openbiox.r-universe.dev", "https://cran.r-project.org"))
# Local
install.packages("UCSCXenaShiny_2.0.0.tar.gz", repos = NULL, type="source")
- Once the package has been installed successfully, your can load it and check its version:
## =========================================================================================
## UCSCXenaShiny version 2.2.0
## Project URL: https://github.com/openbiox/UCSCXenaShiny
## Usages: https://openbiox.github.io/UCSCXenaShiny/
##
## If you use it in published research, please cite:
## Shensuo Li, Yuzhong Peng, Minjun Chen, Yankun Zhao, Yi Xiong, Jianfeng Li, Peng Luo,
## Haitao Wang, Fei Zhao, Qi Zhao, Yanru Cui, Sujun Chen, Jian-Guo Zhou, Shixiang Wang,
## Facilitating integrative and personalized oncology omics analysis with UCSCXenaShiny,
## Communications Biology, 1200 (2024), https://doi.org/10.1038/s42003-024-06891-2
## =========================================================================================
## --Enjoy it--
## [1] '2.2.0'