write.gct {phantasus} | R Documentation |
Saves ExpressionSet to a GCT file (version 1.3).
write.gct(es, file, gzip = FALSE)
es |
ExpresionSet obeject to save |
file |
Path to output gct file |
gzip |
Whether to gzip apply gzip-compression for the output file#' |
Result of the closing file (as in 'close()' function')
es <- read.gct(system.file("extdata", "centers.gct", package = "phantasus")) out <- tempfile(fileext = ".gct.gz") write.gct(es, out, gzip=TRUE)