Skip to content

HelenaLC/cytofWorkflow

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

92 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CyTOF workflow: differential discovery in high-throughput high-dimensional cytometry datasets

Abstract

High dimensional mass and flow cytometry (HDCyto) experiments have become a method of choice for high throughput interrogation and characterization of cell populations. Here, we present an R-based pipeline for differential analyses of HDCyto data, largely based on Bioconductor packages. We computationally define cell populations using FlowSOM clustering, and facilitate an optional but reproducible strategy for manual merging of algorithm-generated clusters. Our workflow offers different analysis paths, including association of cell type abundance with a phenotype or changes in signaling markers within specific subpopulations, or differential analyses of aggregated signals. Importantly, the differential analyses we show are based on regression frameworks where the HDCyto data is the response; thus, we are able to model arbitrary experimental designs, such as those with batch effects, paired designs and so on. In particular, we apply generalized linear mixed models to analyses of cell population abundance or cell-population-specific analyses of signaling markers, allowing overdispersion in cell count or aggregated signals across samples to be appropriately modeled. To support the formal statistical analyses, we encourage exploratory data analysis at every step, including quality control (e.g. multi-dimensional scaling plots), reporting of clustering results (dimensionality reduction, heatmaps with dendrograms) and differential analyses (e.g. plots of aggregated signals).

Bioconductor installation

The workflow is available on Bioconductor.

All the packages used in this workflow get installed by installing the workflow corresponding package:

source("http://bioconductor.org/workflows.R")
workflowInstall("cytofWorkflow")

GitHub installation

First you need to install BiocInstaller:

source("http://bioconductor.org/biocLite.R")

You need to install the devtools package for the special use of biocLite() below:

biocLite("devtools") 

Install the workflow from this github repository:

biocLite("gosianow/cytofWorkflow", dependencies = TRUE)

The workflow can be executed by following the instructions in the cytofWorkflow.Rmd file available in the vignettes directory.