write.GenePixData: Write a GenePix Results Data file

Description Usage Arguments Value Author(s) References See Also Examples

Description

Writes the GenePixData object to a file with the GenePix file format GPR (GenePix Results Format).

Usage

1
2
## S3 method for class 'GenePixData'
write(this, filename, path=NULL, slide=1, overwrite=FALSE, ..., verbose=FALSE)

Arguments

filename

The filename of the file to be written.

path

The path to the file.

slide

An integer specifying which slide to be written to file. Currently, only one slide at the time can be written.

overwrite

If TRUE, already an existing file will be overwritten. Otherwise an Exception will be thrown.

...

Arguments passed to write.table.

Value

Returns nothing.

Author(s)

Henrik Bengtsson (http://www.braju.com/R/)

References

GenePix File Formats, http://www.axon.com/GN_GenePix_File_Formats.html

See Also

To read one or more GenePix Results files see *read(). For more information see GenePixData.

Examples

1
2
3
4
5
6
7
  gpr <- GenePixData$read("gpr123.gpr", path=system.file("data-ex", package="aroma"))

  # Writes the GenePix Results Data to a file named "temp.gpr". Note
  # that this file won't be exactly the same since a few lines,
  # specifying for instance the creator of the file, will be added.
  write(gpr, "temp.gpr", overwrite=TRUE)
  file.show("temp.gpr")

HenrikBengtsson/aroma documentation built on May 7, 2019, 12:56 a.m.