I have an I/GRanges Views object as
** Its a simplified version of the data, actual data is huge
Views on a 10000000-length Rle subject
views:
start end width
[1] 1 1000 1000 [100 100 100 100 100 100 100 100 100 100 ...]
[2] 1001 2000 1000 [190 190 190 190 190 190 190 190 190 190 ...]
[3] 2001 3000 1000 [280 280 280 280 280 280 280 280 280 280 ...]
[4] 3001 4000 1000 [370 370 370 370 370 370 370 370 370 370 ...]
[5] 4001 5000 1000 [460 460 460 460 460 460 460 460 460 460 ...]
... ... ... ... ...
[9996] 995001 9996000 9001000 [89650 89650 89650 89650 89650 89650 ...]
[9997] 996001 9997000 9001000 [89740 89740 89740 89740 89740 89740 ...]
[9998] 997001 9998000 9001000 [89830 89830 89830 89830 89830 89830 ...]
[9999] 998001 9999000 9001000 [89920 89920 89920 89920 89920 89920 ...]
[10000] 999001 10000000 9001000 [90010 90010 90010 90010 90010 90010 ...]
Each View(line) has a width of 1000 meaning 1000 datapoints of 100 each. Now, I would like to divide the set of datapoints into 20 bins (in this case, 50 per bin) and then take the mean, so the output will be a vector of 20 numbers, each being the average at that bin.
Output :
[1] 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100
Now, in a real situation, I have more than 20 views like that, with a different width for each line and some lines > 5K. My code works fine but is very slow, for my data, for each line, returning a vector of 20 bins, takes ~1.5secs and I have >30K lines, making ~12.5 hours.
I am sure, there are ways to fasten these calculations, if not may somehow I can use the parallel nodes of my cluster. What do you suggest.
Test Code to generate the data :
library('GenomicRanges')
# generating data frame
df=data.frame(chrom=rep('Chr1',100000),start=seq(1,1000000,by=1000),end=seq(1000,10000000,by=1000),strand=rep("+",100000))
# making GRanges object
gr=GRanges(seqnames=as.vector(df[,1]),IRanges(start=df[,2],end=df[,3]),strand=df[,4])
# obtaining coverage using function coverage in the form of RLE object
gr.cov=coverage(gr)
# generating views for specific start and end
gr.views=Views(gr.cov[[1]],start=seq(1,1000000,by=1000),end=seq(1000,10000000,by=1000))
# putting in temp variable
d=gr.views
# this following code calculates the matrix (where each line is 20 points) for 10 lines
# reduce or increase the number in the outermost sapply loop to increase/decrease the lines to be calculated
sapply(1:10,function(j)
sapply(1:20,
function(i)as.numeric(
format(
mean(
as(d[[j]][(
seq(0,length(d[[j]]),floor(length(d[[j]])/20))+1)[i]:
c((seq(0,length(d[[j]]),floor(length(d[[j]])/20)))[
-length((seq(0,length(d[[j]]),floor(length(d[[j]])/20))))
],length(d[[j]]))[i+1]],
"RangedData")$score),
digits=2)
)
)
)