Description Usage Arguments Value Examples
View source: R/mzML2diskFrame.R
Convert .mzML file to disk.frame using mzR, data.table, and disk.frame
1 | mzML2diskFrame(path, diskFramePath, scans = NULL, chunkSize = 100)
|
path |
path to the mzML file |
diskFramePath |
path and fileName.df specifying write location of .df directory |
scans |
Optional parameter. Provide a numeric vector to import select scans and write to a data.frame. If not provided, the whole file is converted. Default is NULL. |
chunkSize |
number of scans to be extracted and written to the disk.frame at a time. Useful for breaking up large data files and converting to disk.frame. Default is 100. If NULL, imports all scans in single operation and you will probably run out of memory. |
Returns a disk.frame reference object.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Not run:
#read .mzML file from system path and write to disk.frame
#100 scans (default) at a time
mzML2diskFrame(path = path_2_mzML,
diskFramePath = "dfPath.df")
#read scans 100-200 from .mzML file specified by a system path
#and write to disk.frame 20 scans at a time
mzML2diskFrame(path = path_2_mzML,
diskFramePath = "dfPath.df",
scans = c(100:200),
chunkSize = 20)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.