### Install geneHapR and Dependencies in R Source: https://github.com/zhangrenl/genehapr/blob/master/README.md Installs necessary BiocManager packages and the geneHapR package itself. Also shows how to install packages directly from Gitee using devtools. ```r # a few non-CRAN packages may need install manually if(! require(BiocManager)) install.packages("BiocManager") BiocManager::install(c("Biostrings", "GenomicRanges", "muscle", "IRanges", "rtracklayer", "trackViewer")) install.packages("geneHapR") devtools::install_git("https://gitee.com/zhangrenl/lolliplot") # need devtools package and git software devtools::install_git("https://gitee.com/zhangrenl/genehapr") # need devtools package and git software ``` -------------------------------- ### Install and Run geneHapR using Docker Source: https://github.com/zhangrenl/genehapr/blob/master/README.md Pulls the latest geneHapR Docker image and runs it interactively in bash. ```bash # pull the docker from hub.docker.com docker pull zhangrenl/genehapr:latest # run the image docker run -ti --rm zhangrenl/genehapr bash ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.