Description Usage Arguments Value Author(s) See Also Examples
Locates cDNA microarray experiment setup files and returns a list of File object, which can be used by the static read() method in this class. By default it searches the current directory, but it can search any number of directories and recursively to an optimal depth.
Any file with the extension ".setup"
is matched. The files are
not tried to be read.
1 | ExperimentalSetup$findSetupFiles(paths, recursive=TRUE, ...)
|
paths |
Vector of character strings or list of File objects specifying which directories to be searched. |
recursive |
If \codeTRUE, all subdirectories will also be search.
If \codeFALSE, only the specified directory will be searched.
If an integer is given, it specifies the maximum depth of the
directory structure to be search; |
Returns a list
of filenames pointing to the setup files found.
Henrik Bengtsson (http://www.braju.com/R/)
For more information see ExperimentalSetup
.
1 2 3 4 5 6 | files <- ExperimentalSetup$findSetupFiles(system.file("misc", package="aroma"))
print(files)
for (file in files) {
setup <- ExperimentalSetup$read(file)
print(setup)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.