Splits the MassLynx complete summary output file into individual data frames based on compound.
Usage
ras.SplitOutput(
sourceFiles = tcltk::tk_choose.files(),
clean = FALSE,
write = TRUE
)
Value
Writes a tsv file per compound to the same directory as the source file.
Also returns the nested list of data frames for each file
See also
Other SplitOutput:
ras.StackOutput()
Examples
if (FALSE) { # \dontrun{
ras.SplitOutput() # First thing the function does is ask the user for a file.
ras.SplitOutput(clean = FALSE) # If the summary output file was not based on the provided template.
# !!! DOES **NOT** WRITE TO FILE SYSTEM !!!
listDF = ras.SplitOutput(sourceFile = system.file("extdata",
"Example_MLOutput.txt",
package = "aquaras",
mustWork = TRUE),
write = FALSE)
listDF
} # }