├── .Rbuildignore ├── .github └── workflows │ └── rworkflows.yml ├── .gitignore ├── CRAN-SUBMISSION ├── DESCRIPTION ├── Makefile ├── NAMESPACE ├── NEWS.md ├── R ├── aplot-package.R ├── aplot.R ├── axis.R ├── insertion.R ├── method-accessor.R ├── plot-list.R ├── re-export.R ├── utilities.R └── zzz.R ├── README.Rmd ├── README.md ├── inst ├── CITATION └── extdata │ └── scRNA_dotplot_data.tsv.gz └── man ├── align_axis.Rd ├── aplot-package.Rd ├── aplot_label.Rd ├── as.patchwork.Rd ├── figures └── aplot_logo.png ├── gglist.Rd ├── gglistGrob.Rd ├── plot-insertion.Rd ├── plot_list.Rd └── reexports.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/workflows/rworkflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/.github/workflows/rworkflows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rhistory 2 | bookdown/ 3 | -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/aplot-package.R: -------------------------------------------------------------------------------- 1 | #' @keywords internal 2 | "_PACKAGE" 3 | 4 | -------------------------------------------------------------------------------- /R/aplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/R/aplot.R -------------------------------------------------------------------------------- /R/axis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/R/axis.R -------------------------------------------------------------------------------- /R/insertion.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/R/insertion.R -------------------------------------------------------------------------------- /R/method-accessor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/R/method-accessor.R -------------------------------------------------------------------------------- /R/plot-list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/R/plot-list.R -------------------------------------------------------------------------------- /R/re-export.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/R/re-export.R -------------------------------------------------------------------------------- /R/utilities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/R/utilities.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/README.md -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/extdata/scRNA_dotplot_data.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/inst/extdata/scRNA_dotplot_data.tsv.gz -------------------------------------------------------------------------------- /man/align_axis.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/man/align_axis.Rd -------------------------------------------------------------------------------- /man/aplot-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/man/aplot-package.Rd -------------------------------------------------------------------------------- /man/aplot_label.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/man/aplot_label.Rd -------------------------------------------------------------------------------- /man/as.patchwork.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/man/as.patchwork.Rd -------------------------------------------------------------------------------- /man/figures/aplot_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/man/figures/aplot_logo.png -------------------------------------------------------------------------------- /man/gglist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/man/gglist.Rd -------------------------------------------------------------------------------- /man/gglistGrob.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/man/gglistGrob.Rd -------------------------------------------------------------------------------- /man/plot-insertion.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/man/plot-insertion.Rd -------------------------------------------------------------------------------- /man/plot_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/man/plot_list.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLab-SMU/aplot/HEAD/man/reexports.Rd --------------------------------------------------------------------------------