Learn R Programming

Risa (version 1.14.0)

write.ISAtab: Write an ISA-Tab dataset

Description

write.ISAtab writes a ISA-Tab dataset.

Usage

write.ISAtab(isa, path = getwd())

Arguments

isa
the ISA-Tab object as built with the function readISAtab.
path
the directory where the files are going to be written, by default is the working directory

See Also

write.investigation.file, write.study.file, write.assay.file, readISAtab

Examples

Run this code
    ### Example of writing the study file of faahKO ISA-Tab dataset into the temp director
    data.dir <- system.file("extdata", package="Risa")
    isazip <- system.file("extdata","faahKO-metadata.zip", package="Risa")
    faahkoISA <- readISAtab(zipfile = isazip, path = file.path(data.dir,"faahKOISA"), verbose =TRUE)      
    temp = tempdir()
    write.ISAtab(faahkoISA, temp)

Run the code above in your browser using DataLab