Description Usage Arguments Details Value Author(s) See Also Examples
Write FCS file for each flowFrame in a flowSet
1 | write.flowSet(x, outdir=identifier(x), filename, ...)
|
x |
A |
outdir |
A character scalar giving the output directory. As the
default, the output of |
filename |
A character scalar or vector giving the output file names.
By default, the function will use the identifiers of the individual
|
... |
Further arguments that are passed on to
|
The function write.flowSet
creates FCS 3.0 standard file for all
flowFrames
in an object of class flowSet
. In addition, it will
write the content of the phenoData
slot in the ASCII file
"annotation.txt"
. This file can subsequently be used to reconstruct
the whole flowSet
using the read.flowSet
function, e.g.:
read.flowSet(path=outdir, phenoData="annotation.txt"
The function uses write.FCS
for the actual writing
of the FCS files.
A character vector of the output directory.
F. Hahne
1 2 3 4 5 6 7 8 9 10 11 | ## sample data
data(GvHD)
foo <- GvHD[1:5]
outDir <- file.path(tempdir(), "foo")
## now write out into files
write.flowSet(foo, outDir)
dir(outDir)
## and read back in
bar <- read.flowSet(path=outDir, phenoData="annotation.txt")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.