Name Mode Size
R 040000
data 040000
inst 040000
man 040000
tests 040000
vignettes 040000
.Rbuildignore 100644 0 kb
.gitignore 100644 1 kb
DESCRIPTION 100644 2 kb
NAMESPACE 100644 2 kb
NEWS 100644 3 kb
README.md 100644 5 kb
README.md
# cytomapper R package to spatially visualize pixel- and cell-level information obtained from highly multiplexed imaging cytometry. ## Introduction Highly multiplexed imaging cytometry acquires single-cell expression values of selected proteins in a spatially-resolved fashion. These measurements can be visualized across multiple length-scales. First, pixel-level intensities represent the spatial distributions of feature expression with highest resolution. Second, after segmentation, expression values or cell-level metadata (e.g. cell-type information) can be visualized on segmented cell areas. This package contains functions for the visualization of multiplexed read-outs and cell-level information obtained by multiplexed imaging cytometry. The main functions of this package allow 1. the visualization of pixel-level information across multiple channels and 2. the display of cell-level information (expression and/or metadata) on segmentation masks. The `cytomapper` package provides toy data that were generated using imaging mass cytometry [1] taken from Damond _et al._ [2]. For further instructions to process raw imaging mass cytometry data, please refer to the [IMC Segmentation Pipeline](https://github.com/BodenmillerGroup/ImcSegmentationPipeline) and the [histoCAT](https://github.com/BodenmillerGroup/histoCAT) as alternative visualization tool. ## Requirements The current implementation of `cytomapper` requires R version 4.0, which is currently only available as development version at [https://stat.ethz.ch/R/daily/](https://stat.ethz.ch/R/daily/). The `cytomapper` package builds on data objects and functions contained in the [SingleCellExperiment](https://bioconductor.org/packages/release/bioc/html/SingleCellExperiment.html) and [EBImage](https://bioconductor.org/packages/release/bioc/html/EBImage.html) packages. Therefore, these packages need to be installed (see below). ## Installation The `cytomapper` package can be installed from `Bioconductor` via: ```r if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager") BiocManager::install("cytomapper") ``` The development version of the `cytomapper` package can be currently installed from Github using `devtools` in R. Please make sure to also install its dependecies: ```r if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager") BiocManager::install(c("EBImage", "SingleCellExperiment")) # install.packages("devtools") devtools::install_github("BodenmillerGroup/cytomapper", build_vignettes = TRUE) ``` To load the package in your R session, type the following: ```r library(cytomapper) ``` ## Functionality The `cytomapper` package offers two main functions: `plotPixels` and `plotCells`. **plotPixels** The function takes a `CytoImageList` object (available via the `cytomapper` package) containing multi-channel images representing pixel-level expression values and optionally a `CytoImageList` object containing segementation masks and a `SingleCellExperiment` object containing cell-level metadata. It allows the visualization of pixel-level information of up to six channels and outlining cells based on cell-level metadata. To see the full functionality in R type: ```r ?plotPixels ``` **plotCells** This function takes a `CytoImageList` object containing segementation masks and a `SingleCellExperiment` object containing cell-level mean expression values and metadata information. It allows the visualization of cell-level expression data and metadata information. To see the full functionality in R type: ```r ?plotCells ``` ## Getting help For more information on processing imaging mass cytometry data, please refer to the [IMC Segmentation Pipeline](https://github.com/BodenmillerGroup/ImcSegmentationPipeline). This pipeline generates multi-channel tiff stacks containing the pixel-level expression values and segementation masks that can be used for the plotting functions in the `cytomapper` package. More information on how to work with and generate a `SingleCellExperiment` object can be obtained from: [Orchestrating Single-Cell Analysis with Bioconductor](https://osca.bioconductor.org/data-infrastructure.html) An extensive introduction to image analysis in R can be found at: [Introduction to EBImage](https://bioconductor.org/packages/release/bioc/vignettes/EBImage/inst/doc/EBImage-introduction.html) A full overview on the analysis workflow and functionality of the `cytomapper` package can be found by typing: ```r vignette("cytomapper") ``` ## Authors [Nils Eling](https://github.com/nilseling) nils.eling 'at' dqbm.uzh.ch [Nicolas Damond](https://github.com/ndamond) ## References [1] [Giesen et al. (2014), Nature Methods, 11](https://www.nature.com/articles/nmeth.2869) [2] [Damond et al. (2019), Cell Metabolism, 29](https://www.cell.com/cell-metabolism/fulltext/S1550-4131(18)30691-0)