-
Notifications
You must be signed in to change notification settings - Fork 0
/
hplc_scanning_analysis.R
392 lines (367 loc) · 11.1 KB
/
hplc_scanning_analysis.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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
#clear the environment to save on driver space and run faster
rm(list = ls())
setwd("/Users/mphomafata/Documents/GitHub/hplc_scanning")
# import the necessary libraries
library("tidyverse") # to wrangle data frames
library("glue")
library("ggplot2") # to plot the spectra
library("scales") # for formating numerical data in plots
library("FactoMineR")
library("factoextra")
# Read-in the data tables
uv_280_sb <- readxl::read_excel(path = "/Users/mphomafata/Documents/Work_file/Collaborative Work/HPLC scanning/CSV data/HPLC scouting.xlsx",
sheet = "280 nm SB")
uv_280_cb <- readxl::read_excel(path = "/Users/mphomafata/Documents/Work_file/Collaborative Work/HPLC scanning/CSV data/HPLC scouting.xlsx",
sheet = "280 nm CB")
fl_sb <- readxl::read_excel(path = "/Users/mphomafata/Documents/Work_file/Collaborative Work/HPLC scanning/CSV data/HPLC scouting.xlsx",
sheet = "FLD SB")
fl_cb <- readxl::read_excel(path = "/Users/mphomafata/Documents/Work_file/Collaborative Work/HPLC scanning/CSV data/HPLC scouting.xlsx",
sheet = "FLD CB")
files_list <- list(uv_280_sb, uv_280_cb, fl_sb, fl_cb)
# split the files into their respective samples
uv_280_sb_list <- list()
for (i in 1:(ncol(uv_280_sb))) {
first <- as.numeric((2 * i) - 1)
second <- as.numeric(2 * i)
sample_i <- uv_280_sb[c(first, second)]
colnames(sample_i)[1] <- c("rt")
sample_i <- list(sample_i)
uv_280_sb_list <- append(uv_280_sb_list, sample_i)
}
name_list <- row.names(as.data.frame(t(uv_280_sb)) %>% filter(row_number() %% 2 == 0))
names(uv_280_sb_list) <- name_list
# uv 280 cb
uv_280_cb_list <- list()
for (i in 1:(ncol(uv_280_cb))) {
first <- as.numeric((2 * i) - 1)
second <- as.numeric(2 * i)
sample_i <- uv_280_cb[c(first, second)]
colnames(sample_i)[1] <- c("rt")
sample_i <- list(sample_i)
uv_280_cb_list <- append(uv_280_cb_list, sample_i)
}
name_list <- row.names(as.data.frame(t(uv_280_cb)) %>% filter(row_number() %% 2 == 0))
names(uv_280_cb_list) <- name_list
# fluorescence sb
fl_sb_list <- list()
for (i in 1:(ncol(fl_sb))) {
first <- as.numeric((2 * i) - 1)
second <- as.numeric(2 * i)
sample_i <- fl_sb[c(first, second)]
colnames(sample_i)[1] <- c("rt")
sample_i <- list(sample_i)
fl_sb_list <- append(fl_sb_list, sample_i)
}
name_list <- row.names(as.data.frame(t(fl_sb)) %>% filter(row_number() %% 2 == 0))
names(fl_sb_list) <- name_list
# fluorescence cb
fl_cb_list <- list()
for (i in 1:(ncol(fl_cb))) {
first <- as.numeric((2 * i) - 1)
second <- as.numeric(2 * i)
sample_i <- fl_cb[c(first, second)]
colnames(sample_i)[1] <- c("rt")
sample_i <- list(sample_i)
fl_cb_list <- append(fl_cb_list, sample_i)
}
name_list <- row.names(as.data.frame(t(fl_cb)) %>% filter(row_number() %% 2 == 0))
names(fl_cb_list) <- name_list
# create a merged data frame from the lists
# uv 280 sb
merged_uv280_sb_spectra <- full_join(x = as.data.frame(uv_280_sb_list[[1]]),
y = as.data.frame(uv_280_sb_list[[2]]),
by = "rt")
for (i in 3:length(uv_280_sb_list)) {
merged_uv280_sb_spectra <-
full_join(
x = as.data.frame(merged_uv280_sb_spectra),
y = as.data.frame(uv_280_sb_list[[i]]),
by = "rt"
)
}
# uv 280 cb
merged_uv280_cb_spectra <- full_join(x = as.data.frame(uv_280_cb_list[[1]]),
y = as.data.frame(uv_280_cb_list[[2]]),
by = "rt")
for (i in 3:length(uv_280_cb_list)) {
merged_uv280_cb_spectra <-
full_join(
x = as.data.frame(merged_uv280_cb_spectra),
y = as.data.frame(uv_280_cb_list[[i]]),
by = "rt"
)
}
# fluorescence sb
merged_fl_sb_spectra <- full_join(x = as.data.frame(fl_sb_list[[1]]),
y = as.data.frame(fl_sb_list[[2]]),
by = "rt",
relationship = "many-to-many")
for (i in 3:length(fl_sb_list)) {
merged_fl_sb_spectra <-
full_join(
x = as.data.frame(merged_fl_sb_spectra),
y = as.data.frame(fl_sb_list[[i]]),
by = "rt",
relationship = "many-to-many"
)
}
# fluorescence cb
merged_fl_cb_spectra <- full_join(x = as.data.frame(fl_cb_list[[1]]),
y = as.data.frame(fl_cb_list[[2]]),
by = "rt")
for (i in 3:length(fl_cb_list)) {
merged_fl_cb_spectra <-
full_join(
x = as.data.frame(merged_fl_cb_spectra),
y = as.data.frame(fl_cb_list[[i]]),
by = "rt"
)
}
# run the MFAs
# uv 280 sb
mfa_plot_uv28_sb <- MFA(
merged_uv280_sb_spectra[-1],
group = c(26, 25, 25, 25, 25, 25),
type = c(rep("s", 6)),
ncp = 4,
name.group = c("AVN", "CDB", "DTK", "FRV", "KZN", "PDB"),
graph = TRUE
)
mfa_groups_uv280_sb <- plot.MFA(mfa_plot_uv28_sb, choix = "group")
ggsave(
"mfa_groups_uv28_sb.jpg",
plot = mfa_groups_uv280_sb,
width = 30,
height = 15,
units = 'cm',
dpi = 300
)
browseURL("mfa_groups_uv28_sb.jpg")
# uv 280 cb
mfa_plot_uv28_cb <- MFA(
merged_uv280_cb_spectra[-1],
group = c(26, 25, 25, 25, 25, 25),
type = c(rep("s", 6)),
ncp = 4,
name.group = c("AVN", "CDB", "DTK", "FRV", "KZN", "PDB"),
graph = TRUE
)
mfa_groups_uv280_cb <- plot.MFA(mfa_plot_uv28_cb, choix = "group")
ggsave("mfa_groups_uv28_cb.jpg",
plot = mfa_groups_uv280_cb,
width = 30,
height = 15,
units = 'cm',
dpi = 300)
browseURL("mfa_groups_uv28_cb.jpg")
# Fluorescence cb
mfa_plot_fl_cb <- MFA(
merged_fl_cb_spectra[-1],
group = c(26, 25, 25, 25, 25, 25),
type = c(rep("s", 6)),
ncp = 4,
name.group = c("AVN", "CDB", "DTK", "FRV", "KZN", "PDB"),
graph = TRUE
)
mfa_groups_fl_cb <- plot.MFA(mfa_plot_fl_cb, choix = "group")
ggsave("mfa_groups_fl_cb.jpg",
plot = mfa_groups_fl_cb,
width = 30,
height = 15,
units = 'cm',
dpi = 300)
browseURL("mfa_groups_fl_cb.jpg")
# Fluorescence cb
mfa_plot_fl_sb <- MFA(
merged_fl_sb_spectra[-1],
group = c(26, 25, 25, 25, 25, 25),
type = c(rep("s", 6)),
ncp = 4,
name.group = c("AVN", "CDB", "DTK", "FRV", "KZN", "PDB"),
graph = TRUE
)
mfa_groups_fl_sb <- plot.MFA(mfa_plot_fl_sb, choix = "group", graph.type = "ggplot")
ggsave("mfa_groups_fl_sb.jpg",
plot = mfa_groups_fl_sb,
width = 30,
height = 15,
units = 'cm',
dpi = 300)
browseURL("mfa_groups_fl_sb.jpg")
# Visualize the spectra
# uv 280 sb
merged_uv280_sb_spectra <- merged_uv280_sb_spectra %>%
pivot_longer(
!rt,
names_to = "samples",
values_to = "peak_area",
values_drop_na = TRUE
)
spectra_280_sb <- ggplot(
merged_uv280_sb_spectra,
aes(x = rt, y = peak_area, colour = samples)
) + geom_line(linewidth = 0.1) + theme_bw(base_family = "Arial") + theme(
axis.text.x = element_text(
angle = 0,
hjust = 0.5,
vjust = 0.5
),
axis.title.x = element_text(hjust = 0.5, vjust = 0.5),
axis.title.y = element_text(hjust = 0.5, vjust = 0.5),
axis.ticks.length.x = unit(0, "cm"),
axis.ticks.length.y = unit(0, "cm"),
legend.key.height = unit(0.5, "cm"),
legend.key.width = unit(1, "cm"),
legend.direction = "horizontal",
legend.position = "none",
legend.box.background = element_rect(
fill = 'white',
colour = 'black',
linewidth = 0.1
),
legend.text = element_text(size = 4),
legend.title = element_text(size = 4)
) +
scale_x_continuous(breaks = seq(
from = 0,
to = 30,
by = 1
))
ggsave("uv_280_sb_new_spectral_overlay.jpg",
plot = spectra_280_sb,
width = 30,
height = 12,
units = "cm")
browseURL("uv_280_sb_new_spectral_overlay.jpg")
# uv 280 cb
merged_uv280_cb_spectra <- merged_uv280_cb_spectra %>%
pivot_longer(
!rt,
names_to = "samples",
values_to = "peak_area",
values_drop_na = TRUE
)
spectra_280_cb <- ggplot(
merged_uv280_cb_spectra,
aes(x = rt, y = peak_area, colour = samples)
) + geom_line(linewidth = 0.1) + theme_bw(base_family = "Arial") + theme(
axis.text.x = element_text(
angle = 0,
hjust = 0.5,
vjust = 0.5
),
axis.title.x = element_text(hjust = 0.5, vjust = 0.5),
axis.title.y = element_text(hjust = 0.5, vjust = 0.5),
axis.ticks.length.x = unit(0, "cm"),
axis.ticks.length.y = unit(0, "cm"),
legend.key.height = unit(0.5, "cm"),
legend.key.width = unit(1, "cm"),
legend.direction = "horizontal",
legend.position = "none",
legend.box.background = element_rect(
fill = 'white',
colour = 'black',
linewidth = 0.1
),
legend.text = element_text(size = 4),
legend.title = element_text(size = 4)
) +
scale_x_continuous(breaks = seq(
from = 0,
to = 30,
by = 1
))
ggsave("uv_280_cb_new_spectral_overlay.jpg",
plot = spectra_280_cb,
width = 30,
height = 12,
units = "cm")
browseURL("uv_280_cb_new_spectral_overlay.jpg")
# fluorescence sb
merged_fl_sb_spectra <- merged_fl_sb_spectra %>%
pivot_longer(
!rt,
names_to = "samples",
values_to = "peak_area",
values_drop_na = TRUE
)
spectra_fl_sb <- ggplot(
merged_fl_sb_spectra,
aes(x = rt, y = peak_area, colour = samples)
) + geom_line(linewidth = 0.1) + theme_bw(base_family = "Arial") + theme(
axis.text.x = element_text(
angle = 0,
hjust = 0.5,
vjust = 0.5
),
axis.title.x = element_text(hjust = 0.5, vjust = 0.5),
axis.title.y = element_text(hjust = 0.5, vjust = 0.5),
axis.ticks.length.x = unit(0, "cm"),
axis.ticks.length.y = unit(0, "cm"),
legend.key.height = unit(0.5, "cm"),
legend.key.width = unit(1, "cm"),
legend.direction = "horizontal",
legend.position = "none",
legend.box.background = element_rect(
fill = 'white',
colour = 'black',
linewidth = 0.1
),
legend.text = element_text(size = 4),
legend.title = element_text(size = 4)
) +
scale_x_continuous(breaks = seq(
from = 0,
to = 30,
by = 1
))
ggsave("fl_sb_new_spectral_overlay.jpg",
plot = spectra_fl_sb,
width = 30,
height = 12,
units = "cm")
browseURL("fl_sb_new_spectral_overlay.jpg")
# fluorescence cb
merged_fl_cb_spectra <- merged_fl_cb_spectra %>%
pivot_longer(
!rt,
names_to = "samples",
values_to = "peak_area",
values_drop_na = TRUE
)
spectra_fl_cb <- ggplot(
merged_fl_cb_spectra,
aes(x = rt, y = peak_area, colour = samples)
) + geom_line(linewidth = 0.1) + theme_bw(base_family = "Arial") + theme(
axis.text.x = element_text(
angle = 0,
hjust = 0.5,
vjust = 0.5
),
axis.title.x = element_text(hjust = 0.5, vjust = 0.5),
axis.title.y = element_text(hjust = 0.5, vjust = 0.5),
axis.ticks.length.x = unit(0, "cm"),
axis.ticks.length.y = unit(0, "cm"),
legend.key.height = unit(0.5, "cm"),
legend.key.width = unit(1, "cm"),
legend.direction = "horizontal",
legend.position = "none",
legend.box.background = element_rect(
fill = 'white',
colour = 'black',
linewidth = 0.1
),
legend.text = element_text(size = 4),
legend.title = element_text(size = 4)
) +
scale_x_continuous(breaks = seq(
from = 0,
to = 30,
by = 1
))
ggsave("fl_cb_new_spectral_overlay.jpg",
plot = spectra_fl_cb,
width = 30,
height = 12,
units = "cm")
browseURL("fl_cb_new_spectral_overlay.jpg")