Chapter 2 Install

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 check its version:
library(UCSCXenaShiny)
## =========================================================================================
## UCSCXenaShiny version 2.0.0
## Project URL: https://github.com/openbiox/UCSCXenaShiny
## Usages: https://openbiox.github.io/UCSCXenaShiny/
## 
## If you use it in published research, please cite:
##   Shixiang Wang, Yi Xiong, Longfei Zhao, Kai Gu, Yin Li, Fei Zhao, Jianfeng Li,
##   Mingjie Wang, Haitao Wang, Ziyu Tao, Tao Wu, Yichao Zheng, Xuejun Li, Xue-Song Liu,
##   UCSCXenaShiny: An R/CRAN Package for Interactive Analysis of UCSC Xena Data, 
##   Bioinformatics, 2021;, btab561, https://doi.org/10.1093/bioinformatics/btab561.
## =========================================================================================
##                               --Enjoy it--
packageVersion("UCSCXenaShiny")
## [1] '2.0.0'

2.2 Github

# Online
devtools::install_github("openbiox/UCSCXenaShiny")

# Local
devtools::install_local(path = "UCSCXenaShiny-master.zip")

2.3 Conda

conda install -c conda-forge r-ucscxenashiny
  • list all of the versions of r-ucscxenashiny available on your platform:
conda search r-ucscxenashiny --channel conda-forge

Note: See other ways of other installations (e.g. Docker, Linux system) from the README interface of Github project.