https://github.com/ctlab/phantasus
Raw File
Tip revision: fe9c3824eb3d9649de2d0c074c8896ae13c45f27 authored by Nitesh Turaga on 27 April 2020, 19:14:57 UTC
bump x.y.z version to even y prior to creation of RELEASE_3_11 branch
Tip revision: fe9c382
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