正如@TheUnfunCat 指出的那样,OP 的解决方案非常可靠。下面的解决方案只比原始解决方案稍微快一点。我尝试了几乎所有组合,base R
但无法击败包装的效率Rle
,S4Vectors
因此我求助于Rcpp
. 这是主要功能:
GenomeRcpp <- function(v) {
x <- WhichDiffZero(v)
m <- v[c(1L,x+1L)]
s <- c(0L,x)
e <- c(x,length(v))-1L
GRanges('toyChr',IRanges(start = s, end = e), toyData = m)
}
该函数与. WhichDiffZero
_ 很多功劳归于@G.Grothendieck。Rcpp
which(diff(v) != 0)
base R
#include <Rcpp.h>
using namespace Rcpp;
// [[Rcpp::export]]
IntegerVector WhichDiffZero(IntegerVector x) {
int nx = x.size()-1;
std::vector<int> y;
y.reserve(nx);
for(int i = 0; i < nx; i++) {
if (x[i] != x[i+1]) y.push_back(i+1);
}
return wrap(y);
}
以下是一些基准:
set.seed(437)
testData <- do.call(c,lapply(1:10^5, function(x) rep(sample(1:50, 1), sample(1:30, 1))))
microbenchmark(GenomeRcpp(testData), GenomeOrig(testData))
Unit: milliseconds
expr min lq mean median uq max neval cld
GenomeRcpp(testData) 20.30118 22.45121 26.59644 24.62041 27.28459 198.9773 100 a
GenomeOrig(testData) 25.11047 27.12811 31.73180 28.96914 32.16538 225.1727 100 a
identical(GenomeRcpp(testData), GenomeOrig(testData))
[1] TRUE
在过去的几天里,我一直在断断续续地工作,我绝对不满意。我希望有人会采用我所做的(因为这是一种不同的方法)并创造出更好的东西。