| loadLocalFiles {psichomics} | R Documentation |
Load local files
loadLocalFiles(
folder,
ignore = c(".aux.", ".mage-tab."),
name = "Data",
verbose = FALSE
)
folder |
Character: path to folder containing files of interest |
ignore |
Character: skip folders and filenames that match the expression |
name |
Character: name of the category containing all loaded datasets |
verbose |
Boolean: detail steps while parsing? |
List of data frames from valid files
Other functions to load data:
loadGtexData(),
loadSRAproject(),
loadTCGAdata()
## Not run:
folder <- "~/Downloads/ACC 2016"
data <- loadLocalFiles(folder)
ignore <- c(".aux.", ".mage-tab.", "junction quantification")
loadLocalFiles(folder, ignore)
## End(Not run)