Learn R Programming

R453Plus1Toolbox (version 1.22.0)

writeSFF: Function To Write Files In Roche's .sff Format

Description

This function takes an object of class SFFContainer-class and writes its contents into a file in Roche's Standard Flowgram Format (SFF) with the given filename.

Usage

writeSFF(sffContainer, filename)

Arguments

sffContainer
filename
The name of the file to write into.

See Also

readSFF, SFFContainer.

Examples

Run this code
  file <- system.file("extdata", "SFF", "example.sff", package="R453Plus1Toolbox")
  sffContainer <- readSFF(file)
  sffContainer2 <- sffContainer[1:5] 
  ## Not run: writeSFF(sffContainer2, "output.sff")

Run the code above in your browser using DataLab