writeSFF {R453Plus1Toolbox}R Documentation

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

An SFFContainer-class object.

filename

The name of the file to write into.

Author(s)

Christian Ruckert

See Also

readSFF, SFFContainer.

Examples

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

[Package R453Plus1Toolbox version 1.40.0 Index]