writeDir: Directory to write output to. Default is readDir
remFile: Remove original output? Default is TRUE
verbose: Chatty? Default is TRUE
Examples
## Not run:# This example assumes user has already run MGDrivE and generated output.# If that's untree, see vignette for complete examplefPath <-"path/to/data/containing/folder"oPath <-"path/to/write/output"# split data by patch, keep original files# no return valuesplitOutput(readDir = fPath, writeDir = oPath, remFile =FALSE)# Alternatively, remove the original files and write new ones in their placefPath <-"path/to/data/containing/folder"splitOutput(readDir = fPath, writeDir =NULL, remFile =TRUE)## End(Not run)