https://github.com/ctlab/phantasus
Revision e65dbf90da52c8f03e6c3dd354f2f6c053518a87 authored by Alexey Sergushichev on 27 February 2018, 08:57:49 UTC, committed by Alexey Sergushichev on 27 February 2018, 08:57:49 UTC
1 parent 39967c9
Raw File
Tip revision: e65dbf90da52c8f03e6c3dd354f2f6c053518a87 authored by Alexey Sergushichev on 27 February 2018, 08:57:49 UTC
Installing protobuf on osx
Tip revision: e65dbf9
write.gct.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/utils.R
\name{write.gct}
\alias{write.gct}
\title{Saves ExpressionSet to a GCT file (version 1.3).}
\usage{
write.gct(es, file, gzip = FALSE)
}
\arguments{
\item{es}{ExpresionSet obeject to save}

\item{file}{Path to output gct file}

\item{gzip}{Whether to gzip apply gzip-compression for the output file#'}

\item{...}{additional options for read.csv}
}
\value{
Result of the closing file (as in `close()` function`)
}
\description{
Saves ExpressionSet to a GCT file (version 1.3).
}
\examples{
es <- read.gct(system.file("extdata", "centers.gct", package = "phantasus"))
out <- tempfile(fileext = ".gct.gz")
write.gct(es, out, gzip=TRUE)
}
back to top