├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── DElegate-package.R ├── data.R ├── de_methods.R ├── de_utilities.R └── main_functions.R ├── README.md ├── data └── pbmc.rda ├── man ├── DElegate.Rd ├── FindAllMarkers2.Rd ├── findDE.Rd └── pbmc.Rd ├── tests ├── testthat.R └── testthat │ └── test-main_functions.R └── vignettes ├── .gitignore └── articles └── introduction_to_DElegate.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cancerbits/DElegate/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cancerbits/DElegate/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cancerbits/DElegate/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cancerbits/DElegate/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cancerbits/DElegate/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cancerbits/DElegate/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/DElegate-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cancerbits/DElegate/HEAD/R/DElegate-package.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cancerbits/DElegate/HEAD/R/data.R -------------------------------------------------------------------------------- /R/de_methods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cancerbits/DElegate/HEAD/R/de_methods.R -------------------------------------------------------------------------------- /R/de_utilities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cancerbits/DElegate/HEAD/R/de_utilities.R -------------------------------------------------------------------------------- /R/main_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cancerbits/DElegate/HEAD/R/main_functions.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cancerbits/DElegate/HEAD/README.md -------------------------------------------------------------------------------- /data/pbmc.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cancerbits/DElegate/HEAD/data/pbmc.rda -------------------------------------------------------------------------------- /man/DElegate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cancerbits/DElegate/HEAD/man/DElegate.Rd -------------------------------------------------------------------------------- /man/FindAllMarkers2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cancerbits/DElegate/HEAD/man/FindAllMarkers2.Rd -------------------------------------------------------------------------------- /man/findDE.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cancerbits/DElegate/HEAD/man/findDE.Rd -------------------------------------------------------------------------------- /man/pbmc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cancerbits/DElegate/HEAD/man/pbmc.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cancerbits/DElegate/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-main_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cancerbits/DElegate/HEAD/tests/testthat/test-main_functions.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cancerbits/DElegate/HEAD/vignettes/.gitignore -------------------------------------------------------------------------------- /vignettes/articles/introduction_to_DElegate.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cancerbits/DElegate/HEAD/vignettes/articles/introduction_to_DElegate.Rmd --------------------------------------------------------------------------------