R/ext2EntrezID.R

Defines functions ext2EntrezID

Documented in ext2EntrezID

ext2EntrezID <-
function(x){
    x.EntrezID <- rep(0, length = length(x))
    for(i in 1:length(x)){
        x.EntrezID[i] <- unlist(strsplit(x[i], split = "[.]"))[2]
    }
    x.EntrezID
}
weiliu123/PCLasso documentation built on March 28, 2021, 3:51 a.m.