Name Mode Size
.github 040000
R 040000
data 040000
inst 040000
man 040000
tests 040000
vignettes 040000
.Rbuildignore 100644 0 kb
.gitignore 100644 0 kb
DESCRIPTION 100644 2 kb
NAMESPACE 100644 3 kb
NEWS 100644 0 kb
README.md 100644 2 kb
_pkgdown.yml 100644 0 kb
README.md
# DESpace: a framework to discover spatially variable genes and differential spatial patterns across conditions <img src="man/figures/DESpace.png" width="200" align="right" alt="Alt text"> `DESpace` is a framework for identifying spatially variable genes (SVGs), a common task in spatial transcriptomics analyses, and differential spatial variable pattern (DSP) genes, which identify differences in spatial gene expression patterns across experimental conditions. By leveraging pre-annotated spatial clusters as summarized spatial information, `DESpace` models gene expression with a negative binomial (NB), via [edgeR](https://bioconductor.org/packages/release/bioc/html/edgeR.html), with spatial clusters as covariates. SV genes are then identified by testing the significance of spatial clusters. For multi-sample, multi-condition datasets, again we fit a NB model via [edgeR](https://bioconductor.org/packages/release/bioc/html/edgeR.html), but this time we use spatial clusters, conditions and their interactions as covariates. DSP genes are then identified by testing the interaction between spatial clusters and conditions. Check the [vignettes](https://peicai.github.io/DESpace/articles/SVG.html) for a description of the main conceptual and mathematical aspects, as well as usage guidelines. > Peiying Cai, Mark D. Robinson, and Simone Tiberi (2024). > > DESpace: spatially variable gene detection via differential expression testing of spatial clusters. > > Bioinformatics. > Available [here](https://doi.org/10.1093/bioinformatics/btae027) ## Bioconductor installation `DESpace` is available on [Bioconductor](https://bioconductor.org/packages/DESpace) and can be installed with the command: ``` r if (!requireNamespace("BiocManager", quietly=TRUE)) install.packages("BiocManager") BiocManager::install("DESpace") ``` ## Vignette The vignette illustrating how to use the package can be accessed on [Bioconductor](https://bioconductor.org/packages/DESpace) or from R via: ``` r vignette("DESpace") ``` or ``` r browseVignettes("DESpace") ```