R/chrp.R

Defines functions chrp

Documented in chrp

chrp <-
function(hg){
hg<-as.character(hg)	
HG<-unlist(strsplit(hg,split=":"))
n<-length(hg)
i<-seq(n)
k1<-i*2-1
k2<-i*2
chr<-HG[k1]
posit<-as.numeric(HG[k2])
CHR<-unlist(strsplit(chr,split="chr"))
chrn<-as.numeric(CHR[k2])
return(cbind(chrn,posit))
}

Try the GMRP package in your browser

Any scripts or data that you put into this service are public.

GMRP documentation built on Nov. 8, 2020, 5:58 p.m.