Name Mode Size
R 040000
data 040000
inst 040000
man 040000
tests 040000
vignettes 040000
.Rbuildignore 100644 0 kb
.gitignore 100644 0 kb
.travis.yml 100644 0 kb
DESCRIPTION 100644 1 kb
LICENSE 100644 0 kb
NAMESPACE 100644 3 kb
NEWS 100644 17 kb
README.md 100644 1 kb
codecov.yml 100644 0 kb
seqsetvis.Rproj 100644 0 kb
README.md
[![Coverage Status](https://img.shields.io/codecov/c/github/jrboyd/seqsetvis/master.svg)](https://codecov.io/github/jrboyd/seqsetvis?branch=master) See the [vignette](https://bioconductor.org/packages/release/bioc/vignettes/seqsetvis/inst/doc/seqsetvis_overview.html) for an overview of most common functions and usage examples. # Installation ## From Bioconductor ```{r bioc install, eval=FALSE} ## try http:// if https:// URLs are not supported if (!requireNamespace("BiocManager", quietly=TRUE)) install.packages("BiocManager") BiocManager::install("seqsetvis") ``` ## From github One dependency from bioconductor isn't getting installed automatically ```{r bioC missed dependency, eval=FALSE} if (!requireNamespace("BiocManager", quietly=TRUE)) install.packages("BiocManager") BiocManager::install("GenomeInfoDbData") ``` Install devtools if needed ```{r devtools check, eval=FALSE} if(!require(devtools)){ install.packages("devtools") } ``` Install *seqsetvis* from github ```{r install seqsetvis from github, eval=FALSE} devtools::install_github("jrboyd/seqsetvis") ```