write.flowSet.RdWrite FCS file for each flowFrame in a flowSet
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
|
A character vector of the output directory.
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.
link[flowCore]{write.FCS}
## sample data data(GvHD) foo <- GvHD[1:5] outDir <- file.path(tempdir(), "foo") ## now write out into files write.flowSet(foo, outDir)#> [1] "/tmp/RtmpexaeiJ/foo"dir(outDir)#> [1] "annotation.txt" "s5a01.fcs" "s5a02.fcs" "s5a03.fcs" #> [5] "s5a04.fcs" "s5a05.fcs"