5596
Comment:
|
5349
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
Describe CSCBiostatService/IlluminBeadchipDataAnalysis here. | #acl All:read |
Line 3: | Line 3: |
#acl All:read | |
Line 5: | Line 4: |
Line 12: | Line 12: |
Line 13: | Line 14: |
* Data input: using function lumiR or lumiR.batch * Preprocessing |
i. Data input: using function lumiR or lumiR.batch i. Preprocessing |
Line 17: | Line 18: |
1. Quality control: using functions lumiQ and plot 1. Background correction: using function lumiB. The data has been background corrected. Therefore, no background correction was used 1. Variance stabilizing transform: using function lumiT 1. Data normalization: using function lumiN * Filtering |
* Quality control: using functions lumiQ and plot * Background correction: using function lumiB * Variance stabilizing transform: using function lumiT * Data normalization: using function lumiN i. Filtering |
Line 26: | Line 27: |
* Visualizing | i. Visualizing |
Line 29: | Line 30: |
* Clustering * Using function plotSampleRelation: estimate the sample relations based on selected probes (based on large coefficient of variance (mean / standard variance)). Two methods can be used: MDS (Multi-Dimensional Scaling) or hierarchical clustering methods. |
i. Clustering * Using function plotSampleRelation: estimate the sample relations based on selected probes (based on large coefficient of variance (mean/standard variance)). Two methods can be used: MDS (Multi-Dimensional Scaling) or hierarchical clustering methods. |
Line 39: | Line 40: |
* plot(temp$x[, 1:2], col=groupColors[group], pch=19, main="PCA"); legend("topright", levels(group), col=groupColors, pch=19) | plot(temp$x[, 1:2], col=groupColors[group], pch=19, main="PCA"); legend("topright", levels(group), col=groupColors, pch=19) |
Line 41: | Line 42: |
* scatterplot3d(temp$x[, 1:3], color=groupColors[group], pch=19, main="PCA"); legend("topleft", levels(group)), col=groupColors, pch=19) | scatterplot3d(temp$x[, 1:3], color=groupColors[group], pch=19, main="PCA"); legend("topleft", levels(group)), col=groupColors, pch=19) |
Line 43: | Line 45: |
1. model design matrix generated using function model.matrix | i. Model design matrix generated using function model.matrix |
Line 48: | Line 50: |
1. fitting linear models | i. Fitting linear models |
Line 52: | Line 54: |
1. fitting contrasts (e.g., 3 contrasts) | i. Fitting contrasts (e.g., 3 contrasts) |
Line 56: | Line 58: |
1. empirical Bayes | i. Empirical Bayes |
Line 58: | Line 60: |
1. generating a top table and combining with annotations of interest | i. Generating a top table and combining with annotations of interest |
Line 61: | Line 63: |
* sort.by = "logFC" to sort by the (absolute) coefficient representing the log2-fold-change; | |
Line 66: | Line 67: |
Line 67: | Line 69: |
Line 71: | Line 74: |
[[http://www.bioconductor.org/packages/release/bioc/vignettes/limma/inst/doc/usersguide.pdf | Smyth et al. (2014) limma: linear models for microarray data user’s guide ]] <<BR>> |
[[http://www.bioconductor.org/packages/release/bioc/vignettes/limma/inst/doc/usersguide.pdf | Smyth et al. (2014) limma: linear models for microarray data user’s guide]] <<BR>> |
Summary of Illumina Expression BeadChip Data Analysis
Data and experimental design
Platform: Illumina BeadChips
- Design: patients, groups (markers), and chips
- Files (txt files)
- raw data: each gene corresponds to one row.
- sample names and array barcodes
- annotation file
Data preprocessing using lumi package
- Data input: using function lumiR or lumiR.batch
- Preprocessing
- using encapsulating function lumiExpresso
- Functions lumiB, lumiT, lumiN and lumiQ, designed for preprocessing and quality control
- Quality control: using functions lumiQ and plot
- Background correction: using function lumiB
- Variance stabilizing transform: using function lumiT
- Data normalization: using function lumiN
- Filtering
- remove the undetectable (unexpressed) genes based on detection pvalue threshold given by
- quantile of all p-values, e.g., 50% quantile if the half of total probes are not detectable
- false positive rate, e.g., threshold = 0.10 (p-values follow an uniform distribution under null hypothesis)
- remove technical replicates and/or irrelevant patients
- remove the undetectable (unexpressed) genes based on detection pvalue threshold given by
- Visualizing
- using function plot, including density, boxplot, MAplot, pair, and sampleRelation. See the details using help("plot-methods").
- boxplot and density plot of both raw and normalized intensities on log2 scale
- Clustering
- Using function plotSampleRelation: estimate the sample relations based on selected probes (based on large coefficient of variance (mean/standard variance)). Two methods can be used: MDS (Multi-Dimensional Scaling) or hierarchical clustering methods.
- Example: plot(lumi.data.object, what='sampleRelation', cv.Th = 0.10)
- Detect the outlier: The current outlier detection is based on the distance from the sample to the center (average of all samples after removing 10 percent samples farthest away from the center).
Example: temp <- detectOutlier(lumi.data.object, ifPlot=TRUE); any(temp) #if FALSE, there does not exist an outlier.
- Using function hclust (cluster samples using Euclidean distance)
Exampe: X <- exprs(lumi.data.object); temp <- hclust(dist(t(X)), method="average"); plot(temp)
- Using PCA
Example: X <- exprs(lumi.data.object); temp <- prcomp(t(X), scale=TRUE); groupColors <- palette(rainbow(length(levels(group))))
- clsuters using two components:
- plot(temp$x[, 1:2], col=groupColors[group], pch=19, main="PCA"); legend("topright", levels(group), col=groupColors, pch=19)
- clsuters using three components:
- scatterplot3d(temp$x[, 1:3], color=groupColors[group], pch=19, main="PCA"); legend("topleft", levels(group)), col=groupColors, pch=19)
- Using function plotSampleRelation: estimate the sample relations based on selected probes (based on large coefficient of variance (mean/standard variance)). Two methods can be used: MDS (Multi-Dimensional Scaling) or hierarchical clustering methods.
Statistical analysis of gene differential expressions using limma package
- Model design matrix generated using function model.matrix
- define three factor variables: patient, marker (or group), and chip
unpaired design: design <- model.matrix(~ 0 + marker + chip)
- paired design: the patient or sample effects may be different when measured twice or more.
design <- model.matrix(~ 0 + marker + chip + patient)
- Fitting linear models
fit <- lmFit(X, design)
- X: a matrix of gene expressions, each row consists of expressions of one gene.
- For gene i, fitting a linear model: x_i= design * b_i + e_i
- Fitting contrasts (e.g., 3 contrasts)
contrasts <- c("marker3-marker1", "marker3-marker2", "marker2-marker1")
contrast.matrix <- makeContrasts(contrasts = contrasts, levels=design)
fit1 <- contrasts.fit(fit, contrast.matrix)
- Empirical Bayes
fit2 <- eBayes(fit1)
- Generating a top table and combining with annotations of interest
- topfit based on F-statistic
topfit <- topTable(fit2, number=nrow(X), adjust="BH")
- topfit based on t-statistic for each contrast (e.g., contrast k)
topfit <- topTable(fit2, number=nrow(X), adjust="BH", coef=k)
- combining with annotations and mean expressions
- cbind(annotations, mean.expressions, topfit)
- topfit based on F-statistic
- Model design matrix generated using function model.matrix
References
Du (2008) lumi: a pipeline for processing Illumina microarray, Bioinformatics.
Du et al. (2014) Using lumi, a package processing Illumina microarray
Du et al. (2014) Evaluation of VST algorithm in lumi package
Lin at al. (2008) Model-based variance-stabilizing transformation for Illumina microarray data, Nucleic Acids Res.
Smyth et al. (2014) limma: linear models for microarray data user’s guide
Smyth (2004) Linear models and empirical bayes methods for assessing differential expression in microarray experiments, Stat Appl Genet Mol Biol.