Description Usage Arguments See Also
Load dual inlet data
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | iso_read_dual_inlet(
...,
root = ".",
read_raw_data = default(read_raw_data),
read_file_info = default(read_file_info),
read_method_info = default(read_method_info),
read_vendor_data_table = default(read_vendor_data_table),
nu_masses = c(),
discard_duplicates = TRUE,
parallel = FALSE,
parallel_plan = future::multisession,
parallel_cores = future::availableCores(),
cache = default(cache),
read_cache = default(cache),
reread_outdated_cache = FALSE,
quiet = default(quiet),
cache_files_with_errors = TRUE
)
|
... |
one or multiple file/folder paths. All files must have a supported file extension. All folders are expanded and searched for files with supported file extensions (which are then included in the read). |
root |
root directory for the isofiles. Can be relative to the current working directory (e.g. |
read_raw_data |
whether to read the raw mass/ion data from the file |
read_file_info |
whether to read auxiliary file information (file id, sequence information, etc.) |
read_method_info |
whether to read methods information (standards, processing info) |
read_vendor_data_table |
whether to read the vendor computed data table |
nu_masses |
list of masses (e.g. |
discard_duplicates |
whether to automatically discard files with duplicate file IDs (i.e. duplicate file names). If |
parallel |
whether to process in parallel based on the number of available CPU cores. This may yield performance increases for files that are slow to parse such as continuous flow isodat files but usually provides little benefit for efficient data formats such as reading from R Data Archives. |
parallel_plan |
which parallel processing strategy to use, see plan, typically |
parallel_cores |
how many processor cores to use for parallel processing. By default the maximum available number of cores (availableCores), which will allow maximal processing speed but may slow other programs running on your machine. Choose a smaller number if you want some processing resources to remain available for other processes. Will issue a warning if too many cores are requested and reset to the maximum available. |
cache |
whether to cache iso_files. Note that R Data Storage files (.rds, see iso_save) are never cached since they are already essentially in cached form. |
read_cache |
whether to reload from cache if a cached version exists. Note that it will only read from cache if the raw data file has not been modified since. Files that have been modified on disc (e.g. edited in the vendor software) will always be read anew. To automatically reread cached files that were cached by an outdated version of the isoreader package, set the |
reread_outdated_cache |
whether to re-read outdated cache files whenever they are encountered. |
quiet |
whether to display (quiet=FALSE) or silence (quiet = TRUE) information messages. Set parameter to overwrite global defaults for this function or set global defaults with calls to iso_turn_info_messages_on and iso_turn_info_messages_off |
cache_files_with_errors |
deprecated. Please use iso_reread_problem_files instead to selectively re-read all files in a collection of iso files that had been previously read with errors or warnings. |
Other isoread functions for different types of IRMS data:
iso_read_continuous_flow()
,
iso_read_scan()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.