Description Usage Arguments Value Author(s) Examples
Reads an ISAtab dataset given as a zip file or as a set of files in a specific folder, and builds an object from the ISAtab class.
1 | readISAtab(path = getwd(), zipfile = NULL, verbose = FALSE)
|
path |
the name of the directory in which the ISAtab files are located (if the parameter zipfile is not provided or if it is equal to NULL), or the name of the directory where the zip file will be extracted (if the parameter zipfile is not NULL.) The default is the working directory. |
zipfile |
a zip archive containing ISAtab files. The default value is NULL. |
verbose |
a boolean indicating to show messages for the different steps, if TRUE, or not to show them, if FALSE |
The result is an object from the ISAtab
class.
Alejandra Gonzalez-Beltran, Audrey Kauffmann / Maintainer: Alejandra Gonzalez-Beltran, ISA Team <isatools@googlegroups.com>
1 2 3 4 5 6 7 8 9 10 11 | ## Example for mass spectrometry dataset
temp = tempdir()
datafiles = c(file.path(system.file("cdf/KO", package="faahKO"), grep("CDF",dir(system.file("cdf/KO", package="faahKO")),ignore.case=TRUE,value=TRUE)), file.path(system.file("cdf/WT", package="faahKO"), grep("CDF",dir(system.file("cdf/WT", package="faahKO")),value=TRUE)))
file.copy(datafiles, temp, recursive=TRUE)
isafiles = file.path(system.file(package="faahKO"), grep("txt",dir(system.file(package="faahKO")),value=TRUE))
file.copy(isafiles, temp, recursive=TRUE)
isaObject1 = readISAtab(path = temp)
## Example of readISAtab for a mass spectrometry experiment
isazip <- system.file("extdata","faahKO-metadata.zip", package="Risa")
isaObject2 <- readISAtab(zipfile = isazip, path = file.path(system.file("extdata", package="Risa"),"ISAexample"), verbose =TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.