read_isa | R Documentation |
Read or write an isatab file
read_isa(file, type = "auto")
write_isa(x, file = NULL)
file |
file name to read / write. For write_isa, if file is missing, the function will return the isatab object as a character vector. If file is not missing, the function will return the file name. |
type |
Either 'auto', or 'investigation', 'study', 'assay' (can be abbreviated) |
x |
isatab object |
read_isa()
returns either an object of class isatab
(for study / assay files) or
an object of class isa_i
(for investigation files).
isatab
file <- system.file('extdata', 'i_Investigation.txt', package='isaeditor')
isa_i <- read_isa(file)
print(isa_i)
file <- system.file('extdata', 's_isatab.txt', package='isaeditor')
isa_s <- read_isa(file)
print(isa_s)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.