Name Mode Size
.github 040000
R 040000
data 040000
inst 040000
man 040000
tests 040000
vignettes 040000
.Rbuildignore 100644 0 kb
.gitignore 100644 1 kb
DESCRIPTION 100644 2 kb
LICENSE 100644 0 kb
LICENSE.md 100644 1 kb
NAMESPACE 100644 1 kb
NEWS.md 100644 0 kb
README.md 100644 1 kb
README.md
# standR: spatial transcriptomics analyses and decoding in R <img src="man/figures/standR_sticker.png" align="right" alt="" width="120" /> [![R-CMD-check](https://github.com/DavisLaboratory/standR/workflows/R-CMD-check-bioc/badge.svg)](https://github.com/DavisLaboratory/standR/actions) [![Coverage status](https://codecov.io/gh/DavisLaboratory/standR/branch/master/graph/badge.svg)](https://codecov.io/github/DavisLaboratory/standR?branch=master) The standR package provides a series of functions to assist different stages of the analysis of spatial transcriptomics data generated from the Nanostring's GeoMX DSP platforms. Most functions in the package is based on the infrastructure `SpatialExperiment`, see detials [here](https://www.biorxiv.org/content/10.1101/2021.01.27.428431v3). ## See full guide at [HERE](https://davislaboratory.github.io/standR/) ## Overall workflow <img src="man/figures/workflow.jpg" width="1200"> ## Example data The published GeoMX WTA data of diabetic kidney disease that we used in the vignette is available [here](http://nanostring-public-share.s3-website-us-west-2.amazonaws.com/GeoScriptHub/KidneyDataset/). ## Installation Install the release version from Bioconductor ``` if (!require("BiocManager", quietly = TRUE)) install.packages("BiocManager") BiocManager::install("standR") ``` Install development version from GitHub ``` library(devtools) devtools::install_github("DavisLaboratory/standR") ```