-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.Rmd
More file actions
199 lines (149 loc) · 6.28 KB
/
index.Rmd
File metadata and controls
199 lines (149 loc) · 6.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
---
title: Using Bioconductor with High Throughput Assays
output:
rmdformats::readthedown:
toc_depth: 3
number_sections: true
---
Bioconductor includes packages for analysis of diverse areas of
high-throughput assays such as flow cytometry, quantitative real-time PCR,
mass spectrometry, proteomics and other cell-based data.
# Sample Workflow
The following psuedo-code illustrates a typical R / Bioconductor
session. It makes use of the flow cytometry packages to load, transform and
visualize the flow data and gate certain populations in the dataset.
The workflow loads the `flowCore`, `flowStats` and `flowViz` packages and its
dependencies. It loads the ITN data with 15 samples, each of which includes,
in addition to FSC and SSC, 5 fluorescence channels: CD3, CD4, CD8, CD69 and
HLADR.
```{r echo=FALSE, results="hide", warning=FALSE}
suppressPackageStartupMessages(library(flowCore))
suppressPackageStartupMessages(library(flowStats))
suppressPackageStartupMessages(library(flowViz))
```
```{r}
## Load packages
library(flowCore)
library(flowStats)
library(flowViz) # for flow data visualization
## Load data
data(ITN)
ITN
```
First, we need to transform all the fluorescence channels. Using a `workFlow`
object can help to keep track of our progress.
```{r}
## Create a workflow instance and transform data using asinh
wf <- workFlow(ITN)
asinh <- arcsinhTransform()
tl <- transformList(colnames(ITN)[3:7], asinh,
transformationId = "asinh")
add(wf, tl)
```
Next we use the `lymphGate` function to find the T-cells in the CD3/SSC
projection.
```{r}
## Identify T-cells population
lg <- lymphGate(Data(wf[["asinh"]]), channels=c("SSC", "CD3"),
preselection="CD4", filterId="TCells", eval=FALSE,
scale=2.5)
add(wf, lg$n2gate, parent="asinh")
print(xyplot(SSC ~ CD3| PatientID, wf[["TCells+"]],
par.settings=list(gate=list(col="red",
fill="red", alpha=0.3))))
```
A typical workflow for flow cytometry data analysis in Bioconductor flow
packages include data transformation, normalization, filtering, manual gating,
semi-automatic gating and automatic clustering if desired. Details can be
found in [flowWorkFlow.pdf](flowWorkFlow.pdf) or the vignettes of the
[flow cytometry packages](#diverse-assays-resources).
# Installation and Use
Follow [installation instructions](/install/) to start using these
packages. To install the `flowCore` package and all of its
dependencies, evaluate the commands
```{r eval=FALSE}
## try http:// if https:// URLs are not supported
source("https://bioconductor.org/biocLite.R")
biocLite("flowCore")
```
Package installation is required only once per R installation. View a
full list of
[available packages](/packages/release/bioc/).
To use the `flowCore` package, evaluate the command
```{r eval=FALSE}
library("flowCore")
```
This instruction is required once in each R session.
# Exploring Package Content
Packages have extensive help pages, and include vignettes highlighting
common use cases. The help pages and vignettes are available from
within R. After loading a package, use syntax like
help(package="flowCore")
?read.FCS
to obtain an overview of help on the `flowCore` package, and the
`read.FCS` function, and
```{r eval=FALSE}
browseVignettes(package="flowCore")
```
to view vignettes (providing a more comprehensive introduction to
package functionality) in the `flowCore` package. Use
```{r eval=FALSE}
help.start()
```
to open a web page containing comprehensive help resources.
# Diverse Assays Resources
The following provide a brief overview of packages useful for analysis
of high-throughput assays. More comprehensive workflows can be found
in documentation (available from [package
descriptions](/packages/release/bioc/))
and in Bioconductor [publications](/help/publications/).
## Flow Cytometry ##
These packages use standard FCS files, including infrastructure,
utilities, visualization and semi-autogating methods for the
analysis of flow cytometry data.
[flowCore](/packages/release/bioc/html/flowCore.html),
[flowViz](/packages/release/bioc/html/flowViz.html),
[flowQ](/packages/release/bioc/html/flowQ.html),
[flowStats](/packages/release/bioc/html/flowStats.html),
[flowUtils](/packages/release/bioc/html/flowUtils.html),
[flowFP](/packages/release/bioc/html/flowFP.html),
[flowTrans](/packages/release/bioc/html/flowTrans.html),
Algorithms for clustering flow cytometry data are found in these packages:
[flowClust](/packages/release/bioc/html/flowClust.html),
[flowMeans](/packages/release/bioc/html/flowMeans.html),
[flowMerge](/packages/release/bioc/html/flowMerge.html),
[SamSPECTRAL](/packages/release/bioc/html/SamSPECTRAL.html)
A typical workflow using the packages `flowCore`, `flowViz`, `flowQ` and
`flowStats` is described in detail in [flowWorkFlow.pdf](flowWorkFlow.pdf).
The data files used in the workflow can be downloaded from
[here](dataFiles.tar).
## Cell-based Assays ##
These packages provide data structures and algorithms for cell-based
high-throughput screens (HTS).
[cellHTS2](/packages/release/bioc/html/cellHTS2.html),
[RNAither](/packages/release/bioc/html/RNAither.html)
This package supports the xCELLigence system which contains a series of
real-time cell analyzer (RTCA).
[RTCA](/packages/release/bioc/html/RTCA.html)
## High-throughput qPCR Assays ##
These package provide algorithm for the analysis of cycle threshold
(Ct) from quantitative real-time PCR data.
[HTqPCR](/packages/release/bioc/html/HTqPCR.html),
[ddCt](/packages/release/bioc/html/ddCt.html),
[qpcrNorm](/packages/release/bioc/html/qpcrNorm.html)
## Mass Spectrometry and Proteomics data ##
These packages provide framework for processing, visualization, and
statistical analysis of mass spectral and proteomics data.
[clippda](/packages/release/bioc/html/clippda.html),
[MassArray](/packages/release/bioc/html/MassArray.html),
[MassSpecWavelet](/packages/release/bioc/html/MassSpecWavelet.html),
[PROcess](/packages/release/bioc/html/PROcess.html),
[flagme](/packages/release/bioc/html/flagme.html),
[xcms](/packages/release/bioc/html/xcms.html)
## Imaging Based Assays ##
These packages provide infrastructure for image-based phenotyping and automation of other image-related tasks:
[EBImage](/packages/release/bioc/html/EBImage.html),
[imageHTS](/packages/release/bioc/html/imagHTS.html)
```{r}
sessionInfo()
```