Description Usage Arguments Details
View source: R/convert_files.R
Convert vendor specific mass spectrometry files to the open .mzML
format. This functions makes a system
call to docker
in order to convert files.
Conversion arguments should be supplied to the args
parameter exactly as they would be for msconvert
but omitting the --filter
prefix.
1 | convert_files(files, outpath = NULL, msconvert_args = c(), docker_args = c())
|
files |
the absolute filepath vendor specific files to be converted |
outpath |
an optional filepath where |
msconvert_args |
a character vector of arguments to pass to |
docker_args |
additional arguments to pass to |
For example to convert a file with vendor specific centroiding only;
convert_files(rawFiles, outpath = NULL, msconvert_args = 'peakPicking true 1-')
To only retain positive mode data;
convert_files(rawFiles, outpath = NULL, msconvert_args = c('peakPicking true 1-', 'polarity positive'))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.