writeTab {cellHTS2} | R Documentation |
Write the data from a cellHTS
object to a tab-delimited file.
## S4 method for signature 'cellHTS' writeTab(object, file=paste(name(object), "txt", sep="."))
object |
a |
file |
the name of the output file. |
This function is a wrapper for function write.table
to
write the contents of assayData
slot of a
cellHTS
object to a tab-delimited file. If the
object is already annotated, the probe information
(fData(object)@GeneID
) is also added.
The name of the file that was written.
Wolfgang Huber huber@ebi.ac.uk, Ligia P. Bras ligia@ebi.ac.uk
data(KcViabSmall) writeTab(KcViabSmall, file=tempfile())