-
Notifications
You must be signed in to change notification settings - Fork 0
/
.Rhistory
512 lines (512 loc) · 14.6 KB
/
.Rhistory
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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
return(NULL) # Return NULL if there's an error
})
subresults <- list()
# Check if the ensembl object is NULL
if (is.null(ensembl)) {
return(NA) # Return NA if there's an error
} else {
# Access the subdf using the value of orgname
subdf <- dfContainer$orgname
for (region in subdf$region_str) {
data <- getBM(
attributes = c('external_gene_name'),
filters = c('chromosomal_region'),
values = region,
mart = ensembl
)
# Check whether the query was successful or not
if (nrow(data) != 0) {
data$reg <- region
data$orgname <- orgname
subresults <- append(subresults, list(data))
} else {
# Include orgname directly in the data frame construction
data <- data.frame(
external_gene_name = NA,
reg = region,
orgname = orgname # Corrected here
)
subresults <- append(subresults, list(data))
}
}
# Combine subresults into a single data frame and return it
results <- bind_rows(subresults)
return(results) # Return the combined results
}
}
# Initialize the global results variable
assign("results", list(), envir = .GlobalEnv)
all_results<-list()
counter<-0
for (orgname in orgnames[1:2]){
orgresults <- biomaRt_query(orgname)
all_results[[orgname]] <- orgresults
counter <- counter + 1 # Increment the counter
cat("Processed:", counter,"/",length(orgnames), "\n") # Print the processed organism
}
all_results
# Function definition for querying biomaRt
biomaRt_query <- function(orgname) {
# Attempt to create the Ensembl Mart object
ensembl <- tryCatch({
useEnsembl(
biomart = "genes",
dataset = sprintf("%s_gene_ensembl", orgname)
)
}, error = function(e) {
return(NULL) # Return NULL if there's an error
})
subresults <- list()
# Check if the ensembl object is NULL
if (is.null(ensembl)) {
return(NA) # Return NA if there's an error
} else {
# Access the subdf using the value of orgname
subdf <- dfContainer[[orgname]]
for (region in subdf$region_str) {
data <- getBM(
attributes = c('external_gene_name'),
filters = c('chromosomal_region'),
values = region,
mart = ensembl
)
# Check whether the query was successful or not
if (nrow(data) != 0) {
data$reg <- region
data$orgname <- orgname
subresults <- append(subresults, list(data))
} else {
# Include orgname directly in the data frame construction
data <- data.frame(
external_gene_name = NA,
reg = region,
orgname = orgname # Corrected here
)
subresults <- append(subresults, list(data))
}
}
# Combine subresults into a single data frame and return it
results <- bind_rows(subresults)
return(results) # Return the combined results
}
}
# Initialize the global results variable
assign("results", list(), envir = .GlobalEnv)
all_results<-list()
counter<-0
for (orgname in orgnames[1:2]){
orgresults <- biomaRt_query(orgname)
all_results[[orgname]] <- orgresults
counter <- counter + 1 # Increment the counter
cat("Processed:", counter,"/",length(orgnames), "\n") # Print the processed organism
}
all_results
biomaRt_query("hsapeins")
biomaRt_query("hsapiens")
all_results
# Initialize the global results variable
assign("results", list(), envir = .GlobalEnv)
all_results<-list()
all_results[["hsapiens"]]<-biomaRt_query("hsapiens")
all_results
all_results[["mmusculus"]]<-biomaRt_query("mmusculus")
all_results$mmusculus
dfContainer$mmusculus
length(all_results$mmusculus)
length(all_results$mmusculus$reg)
sleep_time <- runif(1, min = 1, max = 5)
sleep_time
sleep_time <- runif(1, min = 1, max = 5)
sleep_time
orgnames
# Initialize the global results variable
assign("results", list(), envir = .GlobalEnv)
all_results<-list()
counter<-0
for (orgname in orgnames[1:3]){
all_results[[orgname]] <- biomaRt_query(orgname)
counter <- counter + 1 # Increment the counter
cat("Processed:", counter,"/",length(orgnames), "\n") # Print the processed organism
sleep_time <- runif(1, min = 1, max = 5)
Sys.sleep(sleep_time)
}
all_results$bmusculus
bind_rows(all_results)
bind_rows(all_results,.id="source")
length(all_results)
all_results[1]
all_results[2]
all_results[3]
all_results[!sapply(all_results, is.null)]
# Function definition for querying biomaRt
biomaRt_query <- function(orgname) {
# Attempt to create the Ensembl Mart object
ensembl <- tryCatch({
useEnsembl(
biomart = "genes",
dataset = sprintf("%s_gene_ensembl", orgname)
)
}, error = function(e) {
return(NULL) # Return NULL if there's an error
})
subresults <- list()
# Check if the ensembl object is NULL
if (is.null(ensembl)) {
data <- data.frame(
external_gene_name = c(NA),
reg = c(NA),
orgname = orgname # Corrected here
) # Return NA if there's an error
} else {
# Access the subdf using the value of orgname
subdf <- dfContainer[[orgname]]
for (region in subdf$region_str) {
data <- getBM(
attributes = c('external_gene_name'),
filters = c('chromosomal_region'),
values = region,
mart = ensembl
)
# Check whether the query was successful or not
if (nrow(data) != 0) {
data$reg <- region
data$orgname <- orgname
subresults <- append(subresults, list(data))
} else {
# Include orgname directly in the data frame construction
data <- data.frame(
external_gene_name = c(NA),
reg = c(region),
orgname = c(orgname) # Corrected here
)
subresults <- append(subresults, list(data))
}
}
# Combine subresults into a single data frame and return it
results <- bind_rows(subresults)
return(results) # Return the combined results
}
}
# Initialize the global results variable
assign("results", list(), envir = .GlobalEnv)
all_results<-list()
counter<-0
for (orgname in orgnames[1:3]){
all_results[[orgname]] <- biomaRt_query(orgname)
counter <- counter + 1 # Increment the counter
cat("Processed:", counter,"/",length(orgnames), "\n") # Print the processed organism
sleep_time <- runif(1, min = 1, max = 5)
Sys.sleep(sleep_time)
}
bind_rows(all_results)
# Initialize the global results variable
assign("results", list(), envir = .GlobalEnv)
all_results<-list()
counter<-0
for (orgname in orgnames[1:3]){
all_results[[orgname]] <- biomaRt_query(orgname)
counter <- counter + 1 # Increment the counter
cat("Processed:", counter,"/",length(orgnames), "\n") # Print the processed organism
sleep_time <- runif(1, min = 1, max = 5)
Sys.sleep(sleep_time)
}
bind_rows(all_results)
# Initialize the global results variable
assign("results", list(), envir = .GlobalEnv)
all_results<-list()
counter<-0
for (orgname in orgnames){
all_results[[orgname]] <- biomaRt_query(orgname)
counter <- counter + 1 # Increment the counter
cat("Processed:", counter,"/",length(orgnames), "\n") # Print the processed organism
sleep_time <- runif(1, min = 1, max = 5)
Sys.sleep(sleep_time)
}
all_results
rbind(all_results)
bind_rows(all_results)
counter
final<-bind_rows(all_results)
write.csv("intragenicNUMTs.csv",final)
write.csv(x=final,file="intragenicNUMTs.csv")
read.csv("intragenicNUMTs.csv")
orgnames[29]
df<-read.csv("intragenicNUMTs.csv")
unique(df$orgname)
orgnames[29]
orgnames[30:]
orgnames[30:length(orgnames)]
# Initialize the global results variable
assign("results", list(), envir = .GlobalEnv)
all_results<-list()
counter<-0
for (orgname in orgnames[30:length(orgnames)]){
all_results[[orgname]] <- biomaRt_query(orgname)
counter <- counter + 1 # Increment the counter
cat("Processed:", counter,"/",length(orgnames), "\n") # Print the processed organism
sleep_time <- runif(1, min = 1, max = 5)
Sys.sleep(sleep_time)
}
#set working directory
if (getwd()!="/Users/birobalint/Documents/MANUDB"){
setwd("/Users/birobalint/Documents/MANUDB")
}
#load the regions file
regions<-read.csv("temp_files/regions.csv")
regions$region_str<-paste(regions$chr_name,regions$genomic_start,regions$genomic_end,sep=":")
#get unique names and perform groupby based on orgname
#load the individual dataframes into a common list container
orgnames<-unique(regions$id)
dfContainer<-list()
for (orgname in orgnames)
{
subdf<-regions %>%
group_by(id) %>%
slice(which(id==orgname))
dfContainer[[orgname]]<-subdf
}
# Function definition for querying biomaRt
biomaRt_query <- function(orgname) {
# Attempt to create the Ensembl Mart object
ensembl <- tryCatch({
useEnsembl(
biomart = "genes",
dataset = sprintf("%s_gene_ensembl", orgname)
)
}, error = function(e) {
return(NULL) # Return NULL if there's an error
})
subresults <- list()
# Check if the ensembl object is NULL
if (is.null(ensembl)) {
data <- data.frame(
external_gene_name = c(NA),
reg = c(NA),
orgname = orgname # Corrected here
) # Return NA if there's an error
} else {
# Access the subdf using the value of orgname
subdf <- dfContainer[[orgname]]
for (region in subdf$region_str) {
data <- getBM(
attributes = c('external_gene_name'),
filters = c('chromosomal_region'),
values = region,
mart = ensembl
)
# Check whether the query was successful or not
if (nrow(data) != 0) {
data$reg <- region
data$orgname <- orgname
subresults <- append(subresults, list(data))
} else {
# Include orgname directly in the data frame construction
data <- data.frame(
external_gene_name = c(NA),
reg = c(region),
orgname = c(orgname) # Corrected here
)
subresults <- append(subresults, list(data))
}
}
# Combine subresults into a single data frame and return it
results <- bind_rows(subresults)
return(results) # Return the combined results
}
}
# Initialize the global results variable
assign("results", list(), envir = .GlobalEnv)
all_results<-list()
counter<-0
for (orgname in orgnames[30:length(orgnames)]){
all_results[[orgname]] <- biomaRt_query(orgname)
counter <- counter + 1 # Increment the counter
cat("Processed:", counter,"/",length(orgnames), "\n") # Print the processed organism
sleep_time <- runif(1, min = 1, max = 5)
Sys.sleep(sleep_time)
}
for (orgname in orgnames[31:length(orgnames)]){
all_results[[orgname]] <- biomaRt_query(orgname)
counter <- counter + 1 # Increment the counter
cat("Processed:", counter,"/",length(orgnames), "\n") # Print the processed organism
sleep_time <- runif(1, min = 1, max = 5)
Sys.sleep(sleep_time)
}
final<-bind_rows(all_results)
final
# Initialize the global results variable
assign("results", list(), envir = .GlobalEnv)
all_results<-list()
for (orgname in orgnames[31:length(orgnames)]){
all_results[[orgname]] <- biomaRt_query(orgname)
counter <- counter + 1 # Increment the counter
cat("Processed:", counter,"/",length(orgnames[31:length(orgnames)]), "\n") # Print the processed organism
sleep_time <- runif(1, min = 1, max = 5)
Sys.sleep(sleep_time)
}
# Initialize the global results variable
assign("results", list(), envir = .GlobalEnv)
all_results<-list()
counter<-0
for (orgname in orgnames[31:length(orgnames)]){
all_results[[orgname]] <- biomaRt_query(orgname)
counter <- counter + 1 # Increment the counter
cat("Processed:", counter,"/",length(orgnames[31:length(orgnames)]), "\n") # Print the processed organism
sleep_time <- runif(1, min = 1, max = 5)
Sys.sleep(sleep_time)
}
ensembl <- useEnsembl(
biomart = "genes")
ensembl <- useEnsembl(
biomart = "genes",
dataset = "hsapiens_gene_ensembl")
listAttributes(mart=ensembl,pattern="start")
searchAttributes(mart=ensembl,pattern="start")
searchAttributes(mart=ensembl,pattern="start_position")
searchAttributes(mart=ensembl,pattern="end_position")
searchAttributes(mart=ensembl,pattern="external_gene_name")
# Function definition for querying biomaRt for MT annotations
biomaRt_query <- function(orgname) {
# Attempt to create the Ensembl Mart object
ensembl <- tryCatch({
useEnsembl(
biomart = "genes",
dataset = sprintf("%s_gene_ensembl", orgname)
)
}, error = function(e) {
return(NULL) # Return NULL if there's an error
})
# Check if the ensembl object is NULL
if (is.null(ensembl)) {
data <- data.frame(
external_gene_name = c(NA),
reg = c(NA),
orgname = orgname # Corrected here
) # Return NA if there's an error
} else {
data <- getBM(
attributes = c('external_gene_name',"start_position","end_position"),
filters = c('chromosomal_region'),
values = region,
mart = ensembl
)
}
return(data)
}
biomaRt_query(orgname = "hsapiens")
# Function definition for querying biomaRt for MT annotations
biomaRt_query <- function(orgname) {
# Attempt to create the Ensembl Mart object
ensembl <- tryCatch({
useEnsembl(
biomart = "genes",
dataset = sprintf("%s_gene_ensembl", orgname)
)
}, error = function(e) {
return(NULL) # Return NULL if there's an error
})
# Check if the ensembl object is NULL
if (is.null(ensembl)) {
data <- data.frame(
external_gene_name = c(NA),
reg = c(NA),
orgname = orgname # Corrected here
) # Return NA if there's an error
} else {
data <- getBM(
attributes = c('external_gene_name',"start_position","end_position"),
filters = c('chromosomal_region'),
values = c("MT:1:25000"),
mart = ensembl
)
}
return(data)
}
biomaRt_query(orgname = "hsapiens")
MTannotations<-list()
counter<-0
for (orgname in orgnames){
MTannotations[[orgname]] <- biomaRt_query(orgname)
counter <- counter + 1 # Increment the counter
cat("Processed:", counter,"/",length(orgnames[31:length(orgnames)]), "\n") # Print the processed organism
sleep_time <- runif(1, min = 1, max = 5)
Sys.sleep(sleep_time)
}
# Function definition for querying biomaRt for MT annotations
biomaRt_query <- function(orgname) {
# Attempt to create the Ensembl Mart object
ensembl <- tryCatch({
useEnsembl(
biomart = "genes",
dataset = sprintf("%s_gene_ensembl", orgname)
)
}, error = function(e) {
return(NULL) # Return NULL if there's an error
})
# Check if the ensembl object is NULL
if (is.null(ensembl)) {
data <- data.frame(
external_gene_name = c(NA),
reg = c(NA),
orgname = orgname # Corrected here
) # Return NA if there's an error
} else {
data <- getBM(
attributes = c('external_gene_name',"start_position","end_position"),
filters = c('chromosomal_region'),
values = c("MT:1:25000"),
mart = ensembl
)
}
return(data)
}
MTannotations<-list()
counter<-0
for (orgname in orgnames){
MTannotations[[orgname]] <- biomaRt_query(orgname)
counter <- counter + 1 # Increment the counter
cat("Processed:", counter,"/",length(orgnames), "\n") # Print the processed organism
sleep_time <- runif(1, min = 1, max = 5)
Sys.sleep(sleep_time)
}
# Function definition for querying biomaRt for MT annotations
biomaRt_query <- function(orgname) {
# Attempt to create the Ensembl Mart object
ensembl <- tryCatch({
useEnsembl(
biomart = "genes",
dataset = sprintf("%s_gene_ensembl", orgname)
)
}, error = function(e) {
return(NULL) # Return NULL if there's an error
})
# Check if the ensembl object is NULL
if (is.null(ensembl)) {
data <- data.frame(
external_gene_name = c(NA),
start_position = c(NA),
end_position=c(NA),
orgname = orgname # Corrected here
) # Return NA if there's an error
} else {
data <- getBM(
attributes = c('external_gene_name',"start_position","end_position"),
filters = c('chromosomal_region'),
values = c("MT:1:25000"),
mart = ensembl
)
data$orgname<-orgname
}
return(data)
}
MTannotations<-list()
counter<-0
for (orgname in orgnames){
MTannotations[[orgname]] <- biomaRt_query(orgname)
counter <- counter + 1 # Increment the counter
cat("Processed:", counter,"/",length(orgnames), "\n") # Print the processed organism
sleep_time <- runif(1, min = 1, max = 5)
Sys.sleep(sleep_time)
}
orgnames
biomaRt_query(orgname = "nvison")