├── .DS_Store ├── .Rbuildignore ├── .Rhistory ├── .gitignore ├── DESCRIPTION ├── GBMatlas.Rproj ├── Meta_Data_GBMatlas.txt ├── NAMESPACE ├── R ├── .DS_Store ├── Figure1.R ├── Figure2.R ├── Figure3.R ├── Figure4.R ├── Figure5.R ├── Figure6.R ├── suppfig4a heatmap.R ├── suppfig7d dotplot.R └── suppfigs.R ├── README.md ├── Rcode └── UMAP_Data_GBMatlas.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveendabas/GBMatlas/HEAD/.DS_Store -------------------------------------------------------------------------------- /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveendabas/GBMatlas/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveendabas/GBMatlas/HEAD/.Rhistory -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveendabas/GBMatlas/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /GBMatlas.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveendabas/GBMatlas/HEAD/GBMatlas.Rproj -------------------------------------------------------------------------------- /Meta_Data_GBMatlas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveendabas/GBMatlas/HEAD/Meta_Data_GBMatlas.txt -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | # Generated by roxygen2: do not edit by hand 2 | 3 | -------------------------------------------------------------------------------- /R/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveendabas/GBMatlas/HEAD/R/.DS_Store -------------------------------------------------------------------------------- /R/Figure1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveendabas/GBMatlas/HEAD/R/Figure1.R -------------------------------------------------------------------------------- /R/Figure2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveendabas/GBMatlas/HEAD/R/Figure2.R -------------------------------------------------------------------------------- /R/Figure3.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveendabas/GBMatlas/HEAD/R/Figure3.R -------------------------------------------------------------------------------- /R/Figure4.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveendabas/GBMatlas/HEAD/R/Figure4.R -------------------------------------------------------------------------------- /R/Figure5.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveendabas/GBMatlas/HEAD/R/Figure5.R -------------------------------------------------------------------------------- /R/Figure6.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveendabas/GBMatlas/HEAD/R/Figure6.R -------------------------------------------------------------------------------- /R/suppfig4a heatmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveendabas/GBMatlas/HEAD/R/suppfig4a heatmap.R -------------------------------------------------------------------------------- /R/suppfig7d dotplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveendabas/GBMatlas/HEAD/R/suppfig7d dotplot.R -------------------------------------------------------------------------------- /R/suppfigs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveendabas/GBMatlas/HEAD/R/suppfigs.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveendabas/GBMatlas/HEAD/README.md -------------------------------------------------------------------------------- /Rcode: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /UMAP_Data_GBMatlas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveendabas/GBMatlas/HEAD/UMAP_Data_GBMatlas.txt --------------------------------------------------------------------------------