├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── combine_genotype_plot.R └── genotype_plot.R ├── README.Rmd ├── README.md ├── inst ├── README.md ├── example.vcf.gz ├── example.vcf.gz.csi ├── example.vcf.gz.tbi ├── example_multi.vcf.gz └── example_multi.vcf.gz.tbi ├── man ├── combine_genotype_plot.Rd └── genotype_plot.Rd └── tests ├── .DS_Store ├── testthat.R └── testthat └── test-genotype-plot.R /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimWhiting91/genotype_plot/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2021 2 | COPYRIGHT HOLDER: James Whiting 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimWhiting91/genotype_plot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimWhiting91/genotype_plot/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/combine_genotype_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimWhiting91/genotype_plot/HEAD/R/combine_genotype_plot.R -------------------------------------------------------------------------------- /R/genotype_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimWhiting91/genotype_plot/HEAD/R/genotype_plot.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimWhiting91/genotype_plot/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimWhiting91/genotype_plot/HEAD/README.md -------------------------------------------------------------------------------- /inst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimWhiting91/genotype_plot/HEAD/inst/README.md -------------------------------------------------------------------------------- /inst/example.vcf.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimWhiting91/genotype_plot/HEAD/inst/example.vcf.gz -------------------------------------------------------------------------------- /inst/example.vcf.gz.csi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimWhiting91/genotype_plot/HEAD/inst/example.vcf.gz.csi -------------------------------------------------------------------------------- /inst/example.vcf.gz.tbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimWhiting91/genotype_plot/HEAD/inst/example.vcf.gz.tbi -------------------------------------------------------------------------------- /inst/example_multi.vcf.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimWhiting91/genotype_plot/HEAD/inst/example_multi.vcf.gz -------------------------------------------------------------------------------- /inst/example_multi.vcf.gz.tbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimWhiting91/genotype_plot/HEAD/inst/example_multi.vcf.gz.tbi -------------------------------------------------------------------------------- /man/combine_genotype_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimWhiting91/genotype_plot/HEAD/man/combine_genotype_plot.Rd -------------------------------------------------------------------------------- /man/genotype_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimWhiting91/genotype_plot/HEAD/man/genotype_plot.Rd -------------------------------------------------------------------------------- /tests/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimWhiting91/genotype_plot/HEAD/tests/.DS_Store -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimWhiting91/genotype_plot/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-genotype-plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JimWhiting91/genotype_plot/HEAD/tests/testthat/test-genotype-plot.R --------------------------------------------------------------------------------