forked from aldringsvitenskap/epigeneticclock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
horvath2013.R
203 lines (194 loc) · 6.56 KB
/
horvath2013.R
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
202
203
# Code from http://www.genomebiology.com/2013/14/10/R115 available under CC BY 2.0
# Also refer to tutorial at http://labs.genetics.ucla.edu/horvath/dnamage/TUTORIAL1.pdf
library(WGCNA)
library(impute)
library(RPMM) #also necessary, for me
source("NORMALIZATION.R")
trafo = function(x, adult.age = 20) {
x = (x + 1) / (1 + adult.age)
y = ifelse(x <= 1, log(x), x - 1)
y
}
anti.trafo = function(x, adult.age = 20) {
ifelse(x < 0, (1 + adult.age) * exp(x) - 1, (1 + adult.age) * x + adult.age)
}
probeAnnotation21kdatMethUsed = read.csv("probeAnnotation21kdatMethUsed.csv")
probeAnnotation27k = read.csv("datMiniAnnotation27k.csv")
datClock = read.csv("AdditionalFile3.csv")
calculateAge = function(dat0) {
file.create("LogFile.txt")
nSamples = dim(dat0)[[2]] - 1
nProbes = dim(dat0)[[1]]
dat0[, 1] = gsub(x = dat0 [, 1],
pattern = "\"",
replacement = "")
DoNotProceed = FALSE
cat(
paste(
"The methylation data set contains",
nSamples,
"samples (e.g. arrays) and ",
nProbes,
" probes."
),
file = "LogFile.txt"
)
if (nSamples == 0) {
DoNotProceed = TRUE
cat(
paste(
"\n ERROR: There must be a data input error since there seem to be no
samples.\n Make sure that you input a comma delimited file (.csv file)\n that can be read using the R command read.csv.sql .
Samples correspond to columns in that file ."
),
file = "LogFile.txt",
append = TRUE
)
}
if (nProbes == 0) {
DoNotProceed = TRUE
cat(
paste(
"\n ERROR: There must be a data input error since there seem to be zero
probes.\n Make sure that you input a comma delimited file (.csv file)\n that can be read using the R command read.csv.sql
CpGs correspond to rows."
) ,
file = "LogFile.txt",
append = TRUE
)
}
if (nSamples > nProbes) {
cat(
paste(
"\n MAJOR WARNING: It worries me a lot that there are more samples than CpG
probes.\n Make sure that probes correspond to rows and samples to columns.\n I wonder whether you want to first transpose
the data and then resubmit them? In any event, I will proceed with the analysis."
),
file = "LogFile.txt",
append = TRUE
)
}
if (is.numeric(dat0[, 1])) {
DoNotProceed = TRUE
cat(
paste(
"\n Error: The first column does not seem to contain probe
identifiers (cg numbers from Illumina) since these entries are numeric values. Make sure that the first column of the file
contains probe identifiers such as cg00000292. Instead it contains ",
dat0[1:3, 1]
),
file = "LogFile.txt",
append = TRUE
)
}
if (!is.character(dat0[, 1])) {
cat(
paste(
"\n Major Warning: The first column does not seem to contain probe identifiers (cg
numbers from Illumina) since these entries are numeric values. Make sure that the first column of the file contains CpG probe
identifiers such as cg00000292. Instead it contains ",
dat0[1:3, 1]
),
file = "LogFile.txt",
append = TRUE
)
}
datout = data.frame(
Error = c(
"Input error. Please check the log file for details",
"Please read the instructions carefully."
),
Comment = c("", "email Steve Horvath.")
)
if (!DoNotProceed) {
nonNumericColumn = rep(FALSE, dim(dat0)[[2]] - 1)
for (i in 2:dim(dat0)[[2]]) {
nonNumericColumn[i - 1] = !is.numeric(dat0[, i])
}
if (sum(nonNumericColumn) > 0) {
cat(
paste(
"\n MAJOR WARNING: Possible input error. The following samples contain nonnumeric
beta values: ",
colnames(dat0)[-1][nonNumericColumn],
"\n Hint: Maybe you use the wrong symbols for missing data.
4
Make sure to code missing values as NA in the Excel file. To proceed, I will force the entries into numeric values but make sure
this makes sense.\n"
),
file = "LogFile.txt",
append = TRUE
)
}
XchromosomalCpGs = as.character(probeAnnotation27k$Name[probeAnnotation27k$Chr ==
"X"])
selectXchromosome = is.element(dat0[, 1], XchromosomalCpGs)
selectXchromosome[is.na(selectXchromosome)] = FALSE
meanXchromosome = rep(NA, dim(dat0)[[2]] - 1)
if (sum(selectXchromosome) >= 500) {
meanXchromosome = as.numeric(apply(as.matrix(dat0[selectXchromosome, -1]), 2, mean, na.rm =
TRUE))
}
if (sum(is.na(meanXchromosome)) > 0) {
cat(
paste(
"\n \n Comment: There are lots of missing values for X chromosomal
probes for some of the samples. This is not a problem when it comes to estimating age but I cannot predict the gender of these
samples.\n "
),
file = "LogFile.txt",
append = TRUE
)
}
match1 = match(probeAnnotation21kdatMethUsed$Name , dat0[, 1])
if (sum(is.na(match1)) > 0) {
missingProbes = probeAnnotation21kdatMethUsed$Name[!is.element(probeAnnotation21kdatMethUsed$Name , dat0[, 1])]
DoNotProceed = TRUE
cat(
paste(
"\n \n Input error: You forgot to include the following ",
length(missingProbes),
" CpG probes
(or probe names):\n ",
paste(missingProbes, sep = "", collapse = ", ")
),
file = "LogFile.txt",
append = TRUE
)
}
match1 = match(probeAnnotation21kdatMethUsed$Name , dat0[, 1])
if (sum(is.na(match1)) > 0)
stop(paste(sum(is.na(match1)), "CpG probes cannot be matched"))
dat1 = dat0[match1, ]
asnumeric1 = function(x) {
as.numeric(as.character(x))
}
dat1[, -1] = apply(as.matrix(dat1[, -1]), 2, asnumeric1)
set.seed(1)
# Do you want to normalize the data (recommended)?
normalizeData = TRUE
source("StepwiseAnalysis.R", local = TRUE)
if (sum(datout$Comment != "") == 0) {
cat(
paste("\n The individual samples appear to be fine.
"),
file = "LogFile.txt",
append = TRUE
)
}
if (sum(datout$Comment != "") > 0) {
cat(
paste(
"\n Warnings were generated for the following samples.\n",
datout[, 1][datout$Comment != ""],
"\n Hint: Check the output file for more details."
),
file = "LogFile.txt",
append = TRUE
)
}
}
# output the results into the directory
write.table(datout, "Output.csv", row.names = F, sep = ",")
return(datout)
}