writeSFF {R453Plus1Toolbox} | R Documentation |
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.
writeSFF(sffContainer, filename)
sffContainer |
An |
filename |
The name of the file to write into. |
Christian Ruckert
file <- system.file("extdata", "SFF", "example.sff", package="R453Plus1Toolbox") sffContainer <- readSFF(file) sffContainer2 <- sffContainer[1:5] ## Not run: writeSFF(sffContainer2, "output.sff")