Description Usage Arguments Author(s) Examples
The openMSfile
constructor will create a new format-specifc
mzR
object, open 'filename' file and all header information is
loaded as a Rcpp module and made accessible through the ramp
slot of the resulting object.
1 2 3 4 5 6 7 | openMSfile(filename, backend=c("Ramp", "netCDF"), verbose = FALSE)
initializeRamp(object)
isInitialized(object)
fileName(object)
|
filename |
Path name of the netCDF, mzData, mzXML or mzML file to read. |
backend |
A |
object |
An instantiated mzR object. |
verbose |
Enable verbose output. |
Steffen Neumann and Laurent Gatto
1 2 3 4 5 6 7 8 9 | library(msdata)
filepath <- system.file("microtofq", package = "msdata")
file <- list.files(filepath, pattern="MM14.mzML",
full.names=TRUE, recursive = TRUE)
mz <- openMSfile(file)
fileName(mz)
isInitialized(mz)
runInfo(mz)
close(mz)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.