Nothing
`writeRIFile` <-
function(outFile, Peaks, riInde, massRange, ftype=c("binary", "text")) {
ftype <- pmatch(ftype[1], c("binary", "text"))
if(ftype == 2) {
Header <- get.file.header()
res <- .C(c_write_peaks_text, as.character(outFile), as.double(Peaks$Time),
as.double(riInde), as.integer(Peaks$Peaks), as.integer(massRange),
as.integer(length(Peaks$Time)), as.character(Header), PACKAGE="TargetSearch")
} else if(ftype == 1) {
swap <- pmatch(.Platform$endian, c("little", "big")) - 1
res <- .C(c_write_peaks_dat, as.character(outFile), as.double(Peaks$Time),
as.double(riInde), as.integer(Peaks$Peaks), as.integer(massRange),
as.integer(length(Peaks$Time)), as.integer(swap), PACKAGE="TargetSearch")
} else {
stop("Error: invalid parameter ftype")
}
invisible(1)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.