R/ReadBPMAPHeader.R

".ReadBPMAPHeader" <-function (fileName){

    #borrow from affxparser
      # Expand '~' pathnames to full pathnames.
      fileName <- file.path(dirname(fileName), basename(fileName))
      if (!file.exists(fileName)) 
      {
        stop("Cannot read BPMAP file. File not found: ", fileName)
      }
      
	content<-.Call("readBPMAPFileHeader", fileName, package="rMAT")
	content
}

Try the rMAT package in your browser

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

rMAT documentation built on May 6, 2019, 2:10 a.m.