writeF.massvector {mscalib}R Documentation

Write massvector

Description

Write massvector to File.

Usage

## S3 method for class 'massvector':
writeF(object,path,file=info(object),ext="txt",...)

Arguments

...
ext file extension.
file file name. defualt info(object)
object massvector
path path to folder.

Details

The read and write functions for different peak-list formats are not provided by the package. This is because there are a oodles of different formats. I will try to collect read-write functions for as many as possible peak-list format's in an add on package which you can find at http://www.molgen.mpg.de/~wolski/mscalib/IO/.

Author(s)

Witold Wolski wolski@molgen.mpg.de

See Also

writeF.massvectorlist, readF.massvector,

Examples

 data(mv1)
 writeF(mv1,".") # writes the file in the home directory.
 readF(massvector(info(mv1)),".")
 file.remove(paste(info(mv1),".txt",sep=""))

[Package Contents]