-
Notifications
You must be signed in to change notification settings - Fork 1
/
Xtraining16KnitR.Rnw
201 lines (164 loc) · 4.9 KB
/
Xtraining16KnitR.Rnw
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
200
201
\documentclass[a4paper,spanish]{article}
\usepackage[T1]{fontenc}
\usepackage[spanish]{babel}
\usepackage[utf8]{inputenc}
<<knitr, echo=FALSE, results="hide">>=
library("knitr")
opts_chunk$set(
tidy=FALSE,
dev="pdf",
fig.show="asis",
warning=FALSE,dpi=300,
fig.width=4, fig.height=4,
message=FALSE)
@
<<style, eval=TRUE, echo=FALSE, results="asis">>=
BiocStyle::latex()
@
\title{KnitR - Rstudio, Xtraining 16}
\author{Said Muñoz Montero$^{1,2}$ \\[1em]
\small{$^{1}$ Genómica Computacional, Instituto Nacional de Medicina Genómica} \\
\small{$^{2}$ Instituto de Fisiología Celular, UNAM}}
\begin{document}
\maketitle
\begin{abstract}
El análisis de microarreglos de expresión permite evaluar los genes que se encuentran diferencialmente expresados entre dos grupos. El siguiente reporte muestra el método de normalización que se utilizó para el estudio de \textit{high vs low}, así como los genes diferencialmente expresados.
\end{abstract}
<<options, results="hide", echo=FALSE>>=
options(digits=3, width=80, prompt=" ", continue=" ")
@
\newpage
\tableofcontents
\newpage
\section{Instalación de paquetes}
Para instalar los paquetes se requiere usar Bioconductor.
<<bioconductor,eval=FALSE>>=
#Installing packages
source("https://bioconductor.org/biocLite.R")
biocLite(c("oligo","pd.hg.u95av2","xtable"))
@
\subsection{Funciones adicionales}
<<volcanoplot2>>=
#Funciones adicionales
volcanoplot2<-function(TT,M,B,main=""){
lfc.status = TT$logFC
B.status = TT$B
fitCB=data.frame(coef=lfc.status,lods=B.status)
x0 = min(lfc.status) -.5
x1 = max(lfc.status) +.5
y0 = min(B.status) -.5
y1 = max(B.status) +.5
plot(lfc.status,B.status,col="black", ylim=c(y0,y1),
xlim=c(x0,x1), main=main, pch=16,cex=.35,
cex.lab=1.2,xlab="Log Fold Change",
ylab="B statistic")
par(new=T)
abline(v=-M, col="brown", ylab="", xlab="")
par(new=T)
abline(v=M, col="brown", ylab="", xlab="")
par(new=T)
abline(h=B, col="black", ylab="", xlab="")
par(new=T)
ind1 = abs(fitCB$coef)>M
ind2 = fitCB$lods >B
ind3 = (fitCB$coef>M & fitCB$lods>B)
ind4 = (fitCB$coef< -M & fitCB$lods>B)
x = as.matrix(fitCB$coef[ind1])
y = as.matrix(fitCB$lods[ind1])
plot(x, y, col="magenta",ylim=c(y0,y1),
xlim=c(x0,x1),main="", pch = 20, xlab="",
ylab="",cex.lab=1.2)
x = as.matrix(fitCB$coef[ind2])
y = as.matrix(fitCB$lods[ind2])
par(new=T)
plot(x, y, col="orange", ylim=c(y0,y1),
xlim=c(x0,x1), main="", pch = 20, xlab="",
ylab="",cex.lab=1.2)
x = as.matrix(fitCB$coef[ind3])
y = as.matrix(fitCB$lods[ind3])
par(new=T)
plot(x, y, col="red", ylim=c(y0,y1),
xlim=c(x0,x1), main="", pch = 20, xlab="",
ylab="",cex.lab=1.2)
x = as.matrix(fitCB$coef[ind4])
y = as.matrix(fitCB$lods[ind4])
par(new=T)
plot(x, y, col="darkgreen", ylim=c(y0,y1),
xlim=c(x0,x1), main="", pch = 20, xlab="",
ylab="",cex.lab=1.2)
}
@
\subsection{Cargar los paquetes necesarios}
<<loadPK,warning=FALSE>>=
#Loading package
library("oligo")
library("xtable")
@
\section{Datos crudos}
<<readcelfiles>>=
celfiles<-list.celfiles("Data",full.name=TRUE)
data<-read.celfiles(celfiles)
colnames(data)<-gsub(".CEL","",colnames(data))
colores<-rep(c("red","blue"),each=2)
@
\subsection{Gráficos datos crudos}
<<boxplotRAW, fig.cap="Boxplot datos crudos">>=
#Plots raw data
boxplot(data,col=colores,main="Boxplot datos crudos",las=2)
@
<<histRAW,fig.cap="Histograma datos crudos">>=
hist(data,col=colores,main="Histograma datos crudos")
@
\section{Normalización}
<<rma>>=
#RMA
data.rma<-rma(data,background=TRUE, normalize=TRUE)
data.rma
@
\subsection{Gráficos Normalización}
<<boxplotRMA,fig.cap="Boxplot RMA">>=
#Plots RMA
boxplot(data.rma,col=colores,main="Boxplot RMA",las=2)
@
<<histRMA,fig.cap="Histograma RMA">>=
hist(data.rma,col=colores,main="Histograma RMA")
@
\section{Normalización sin corrección de fondo}
<<RMAnoBG>>=
#RMA no background
data.rma.nobg<-rma(data,background=FALSE, normalize=TRUE)
@
\subsection{Gráficos Normalización sin corrección de fondo}
<<boxplotRMAnobg,fig.cap="boxplot RMA sin corrección de fondo">>=
#Plots RMA
boxplot(data.rma.nobg,col=colores,main="Boxplot RMA",las=2)
@
<<histograma,fig.cap="Histograma RMA sin corrección de fondo">>=
hist(data.rma.nobg,col=colores,main="Histograma RMA")
@
\section{Análisis diferencial}
Magia -Análisis diferencial realizado con limma, no mostrado-
\subsection{Gráficos Análisis diferencial}
<<volcanoplot,fig.cap="VolcanoPlot high vs low",fig.pos='h'>>=
#Revisar DEG
data.limma<-read.csv("DEG.csv")
volcanoplot2(data.limma,1,2,main="high vs low")
@
\subsection{Genes diferencialmente expresados}
<<CorteDEG>>=
#Extraer Genes DE
dge<-subset(data.limma,abs(logFC)>1 & B>2)
@
<<xtable,results='asis'>>=
print(xtable(dge))
@
<<NumeroDEG>>=
#Genes diferencialmente expresados
nrow(dge)
@
\newpage
\section{SessionInfo}
<<sessInfo, results="asis", echo=FALSE>>=
toLatex(sessionInfo())
@
\end{document}