├── .gitignore ├── CNVplot.jpg ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R └── CNVplot.R ├── README.md ├── data ├── hg19_exons.RData └── hg38_exons.RData └── man └── CNVplot.Rd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantaki/CNVplot/HEAD/.gitignore -------------------------------------------------------------------------------- /CNVplot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantaki/CNVplot/HEAD/CNVplot.jpg -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantaki/CNVplot/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantaki/CNVplot/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | exportPattern("^[[:alpha:]]+") 2 | -------------------------------------------------------------------------------- /R/CNVplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantaki/CNVplot/HEAD/R/CNVplot.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantaki/CNVplot/HEAD/README.md -------------------------------------------------------------------------------- /data/hg19_exons.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantaki/CNVplot/HEAD/data/hg19_exons.RData -------------------------------------------------------------------------------- /data/hg38_exons.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantaki/CNVplot/HEAD/data/hg38_exons.RData -------------------------------------------------------------------------------- /man/CNVplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantaki/CNVplot/HEAD/man/CNVplot.Rd --------------------------------------------------------------------------------