readWriteFirst: Read and write the first n lines of a file

Description Usage Arguments Author(s) Examples

Description

Read first n lines of filein and write them to fileout, where filein and fileout are file names.

Usage

1
readWriteFirst(filein, fileout, n)

Arguments

filein

input file

fileout

output file

n

number of lines to write

Author(s)

Cathy Laurie

Examples

1
2
3
4
5
path <- system.file("extdata", "affy_raw_data", package="GWASdata")
file <- paste(path, list.files(path)[1], sep="/")
outf <- tempfile()
readWriteFirst(file, outf, 20)
file.remove(outf)

GWASTools documentation built on Nov. 8, 2020, 7:49 p.m.