Learn R Programming

qpcrNorm (version 1.30.0)

readQpcrBatch: Data Input Function for a Batch of qPCR Experiments.

Description

This function reads in data from multiple qPCR experiments from the one batch. Each text file in the batch must meet the structure required by readQpcr. Note: In order to qualify as a batch, it is assumed that the same set of primers are being analyzed in each experiment.

Usage

readQpcrBatch(..., filenames = character(), header = FALSE, qc = FALSE)

Arguments

...
Filenames separated by a comma.
filenames
Character vector specifying file names.
header
Logical value, TRUE if the file contains the names of the variables as its first line.
qc
Logical value, TRUE if a QC filter ctQc should be applied to the data. If qc = F, the replicate Ct values will be averaged. See ctQc.

Value

A qpcrBatch object.

Details

If the function is called with no arguments readQpcrBatch() all the files in the working directory are read and put into a qpcrBatch object. All files must conform to the following structure: 1st column = names denoting genes or primer pairs 2nd column = plate index of each gene or primer pair remaining columns = (replicate) Ct values

Note: the majority of arguments to readQpcr are identical to those supplied to read.table. These have been included to give the user greater control over data input, should the data deviate from a standard tab-delimited file structure. For a set of standard tab-delimited text files (without column headers), specifying the filenames should be sufficient.

See Also

ctQc, readQpcr, setwd

Examples

Run this code
	## myBatch <- readQpcrBatch()

Run the code above in your browser using DataLab