Learn R Programming

aroma.core (version 2.2.0)

writeDataFrame.AromaUnitSignalBinaryFile: Writes the data file as a tab-delimited text file

Description

Writes the data file as a tab-delimited text file with or without file header comments.

Usage

## S3 method for class 'AromaUnitSignalBinaryFile':
writeDataFrame(this, filename=sprintf("\%s.txt", getFilename(this)), path=file.path(getRootName(this, tags = "*,txt"), getParentName(this), getChipType(this, fullname = FALSE)), ..., columns=c("unitName", "*"), sep="	", addHeader=TRUE, createdBy=NULL, nbrOfDecimals=4, columnNamesPrefix=c("fullname", "name", "none"), overwrite=FALSE, verbose=FALSE)

Arguments

filename
The filename of the generated file.
path
The path where the generated file should be written.
...
Not used.
columns
A character vector specifying which column names, including optional annotation data column names, that should be exported. A string
sep
A character string specifying the column separator
addHeader
If TRUE, file header comments will be added that contain additional information about the source file and more.
createdBy
A character string specifying the createdBy file header comment. If NULL, the package version will be written.
nbrOfDecimals
An integer specifying the number of decimals for floating point columns.
sep
A character string specifying the column separator
columnNamesPrefix
A character string specifying what type of prefix should be used for column names.
overwrite
If TRUE, an existing destination file will be overwritten, otherwise an exception will be thrown.
verbose
A logical or a Verbose object.

Value

See Also

For more information see AromaUnitSignalBinaryFile.