| emalgth {SIMD} | R Documentation |
Calculate the probability on condition that only a single CpG contributes to a short read.
emalgth(X)
X |
A matrix about X, the elements in X takes values on 0,1 and satisfy the sums of each row equal to 1. |
y1 The probability when sums equal to 1.
set.seed(123)
d <- matrix(0, nrow=200, ncol=50)
random_num <- sample(1:50, 200, replace=TRUE)
for(i in 1:nrow(d)){
d[i,random_num[i]]<-1
}
result <- emalgth(d)
head(result)