Name Mode Size
.github 040000
R 040000
inst 040000
man 040000
tests 040000
vignettes 040000
.Rbuildignore 100644 0 kb
.gitattributes 100644 0 kb
.gitignore 100644 1 kb
CODE_OF_CONDUCT.md 100644 5 kb
DESCRIPTION 100644 1 kb
LICENSE 100644 34 kb
NAMESPACE 100644 0 kb
NEWS.md 100644 2 kb
README.md 100644 3 kb
_pkgdown.yml 100644 0 kb
README.md
# SuperCellCyto <p> <img src="man/figures/supercellcyto.png" align="right" height="2px" /> </p> [SuperCellCyto](https://github.com/phipsonlab/SuperCellCyto) is an extension of the [SuperCell R package](https://github.com/GfellerLab/SuperCell). Initially developed for scRNAseq data, SuperCell aggregates cells with similar transcriptomic profiles into "supercells" (also known as “metacells” in the scRNAseq literature). In SuperCellCyto, we've tailored the SuperCell package to specifically cater to cytometry data: 1. Supercells are now aggregating cells that are similar marker expressions. 2. Supercells are now created for each individual sample. This adaptation ensures that each supercell encompasses cells from exclusively one sample. By processing each sample independently, we prevent the intermixing of cells from different samples within supercells. 3. Multiple samples can now be processed in parallel with a custom load 4. balancing strategy. This enhancement enables simultaneous generation of supercells for multiple samples, significantly reducing the computational time required for processing large datasets. Please [report](https://github.com/phipsonlab/SuperCellCyto/issues) any issues you encounter. ## Installation You can install the stable version of SuperCellCyto from Bioconductor: ```R # Install BiocManager if you haven't already if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager") # Install SuperCellCyto from Bioconductor BiocManager::install("SuperCellCyto") ``` Or, you can install the development version of SuperCellCyto from GitHub: ```R if (!requireNamespace("pak", quietly = TRUE)) install.packages("pak") # Install SuperCellCyto from GitHub pak::pak("phipsonlab/SuperCellCyto") ``` ## Getting Started The best way to get started with SuperCellCyto is to explore the package's vignettes and articles (available at https://phipsonlab.github.io/SuperCellCyto/). ## Changelog For a list of recent changes, please see the [NEWS.md](NEWS.md) file. ## Citation ```bibtex @article{putri2024supercellcyto, title={SuperCellCyto: enabling efficient analysis of large scale cytometry datasets}, author={Putri, Givanna H and Howitt, George and Marsh-Wakefield, Felix and Ashhurst, Thomas M and Phipson, Belinda}, journal={Genome Biology}, volume={25}, number={1}, pages={89}, year={2024}, publisher={Springer} } ``` ## Code of Conduct Please note that the SuperCellCyto project is released with a [Contributor Code of Conduct](https://phipsonlab.github.io/SuperCellCyto/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms. ## Contribution guide Please visit [Contributing Guide](https://phipsonlab.github.io/SuperCellCyto/CONTRIBUTING.html)