R/SCANVISreadSTAR.R

Defines functions SCANVISread_STAR

Documented in SCANVISread_STAR

##INPUT: url to star sj file
SCANVISread_STAR<-function(sj_file){
    out=as.matrix(read.delim(sj_file,header=FALSE))
    colnames(out)=c("chr","start","end","strand","intron.motif","is.annotated",
        "uniq.reads","multi.reads","max.overhang")
    out=gsub(' ','',out)
    return(out)
}

Try the SCANVIS package in your browser

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

SCANVIS documentation built on Nov. 8, 2020, 5:14 p.m.