├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── averageHeatmap.R ├── cellRatioPlot.R ├── clusterCornerAxes.R ├── drawLegend.R ├── featureCornerAxes.R ├── featurePlot.R ├── jjDotPlot.R ├── jjVolcano.R ├── markerVolcano.R ├── scatterCellPlot.R ├── tracksPlot.R └── utils-pipe.R ├── README.md ├── data ├── pbmc.markers.rda └── top3pbmc.markers.rda ├── inst ├── extdata │ ├── htdata.RDS │ ├── pbmc.markers.csv │ ├── seuratTest.RDS │ └── top5pbmc.markers.csv └── rstudio │ └── addins.dcf ├── man ├── averageHeatmap.Rd ├── cellRatioPlot.Rd ├── clusterCornerAxes.Rd ├── drawLegend.Rd ├── featureCornerAxes.Rd ├── featurePlot.Rd ├── jjDotPlot.Rd ├── jjVolcano.Rd ├── markerVolcano.Rd ├── pbmc.markers.Rd ├── pipe.Rd ├── scRNAtoolVis-logo.png ├── scRNAtoolVis-logo.svg ├── scatterCellPlot.Rd ├── top3pbmc.markers.Rd └── tracksPlot.Rd └── scRNAtoolVis.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2022 2 | COPYRIGHT HOLDER: scRNAtoolVis authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/averageHeatmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/R/averageHeatmap.R -------------------------------------------------------------------------------- /R/cellRatioPlot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/R/cellRatioPlot.R -------------------------------------------------------------------------------- /R/clusterCornerAxes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/R/clusterCornerAxes.R -------------------------------------------------------------------------------- /R/drawLegend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/R/drawLegend.R -------------------------------------------------------------------------------- /R/featureCornerAxes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/R/featureCornerAxes.R -------------------------------------------------------------------------------- /R/featurePlot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/R/featurePlot.R -------------------------------------------------------------------------------- /R/jjDotPlot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/R/jjDotPlot.R -------------------------------------------------------------------------------- /R/jjVolcano.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/R/jjVolcano.R -------------------------------------------------------------------------------- /R/markerVolcano.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/R/markerVolcano.R -------------------------------------------------------------------------------- /R/scatterCellPlot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/R/scatterCellPlot.R -------------------------------------------------------------------------------- /R/tracksPlot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/R/tracksPlot.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/README.md -------------------------------------------------------------------------------- /data/pbmc.markers.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/data/pbmc.markers.rda -------------------------------------------------------------------------------- /data/top3pbmc.markers.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/data/top3pbmc.markers.rda -------------------------------------------------------------------------------- /inst/extdata/htdata.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/inst/extdata/htdata.RDS -------------------------------------------------------------------------------- /inst/extdata/pbmc.markers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/inst/extdata/pbmc.markers.csv -------------------------------------------------------------------------------- /inst/extdata/seuratTest.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/inst/extdata/seuratTest.RDS -------------------------------------------------------------------------------- /inst/extdata/top5pbmc.markers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/inst/extdata/top5pbmc.markers.csv -------------------------------------------------------------------------------- /inst/rstudio/addins.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/inst/rstudio/addins.dcf -------------------------------------------------------------------------------- /man/averageHeatmap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/man/averageHeatmap.Rd -------------------------------------------------------------------------------- /man/cellRatioPlot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/man/cellRatioPlot.Rd -------------------------------------------------------------------------------- /man/clusterCornerAxes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/man/clusterCornerAxes.Rd -------------------------------------------------------------------------------- /man/drawLegend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/man/drawLegend.Rd -------------------------------------------------------------------------------- /man/featureCornerAxes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/man/featureCornerAxes.Rd -------------------------------------------------------------------------------- /man/featurePlot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/man/featurePlot.Rd -------------------------------------------------------------------------------- /man/jjDotPlot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/man/jjDotPlot.Rd -------------------------------------------------------------------------------- /man/jjVolcano.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/man/jjVolcano.Rd -------------------------------------------------------------------------------- /man/markerVolcano.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/man/markerVolcano.Rd -------------------------------------------------------------------------------- /man/pbmc.markers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/man/pbmc.markers.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/scRNAtoolVis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/man/scRNAtoolVis-logo.png -------------------------------------------------------------------------------- /man/scRNAtoolVis-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/man/scRNAtoolVis-logo.svg -------------------------------------------------------------------------------- /man/scatterCellPlot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/man/scatterCellPlot.Rd -------------------------------------------------------------------------------- /man/top3pbmc.markers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/man/top3pbmc.markers.Rd -------------------------------------------------------------------------------- /man/tracksPlot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/man/tracksPlot.Rd -------------------------------------------------------------------------------- /scRNAtoolVis.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/scRNAtoolVis/HEAD/scRNAtoolVis.Rproj --------------------------------------------------------------------------------