Description Usage Arguments Details Value Author(s) Examples
Function read.RTqPCR reads in the raw fluorescent data of LC480 light cycler and Mx3005P
RT-qPCR and use the data to populate an object of class "RTqPCRBatch".
1 | read.RTqPCR(file, PCRtype, ...)
|
file |
the name of the file to read in. |
PCRtype |
the type of RT-qPCRs ("LC480" or "Mx3005P") whose file is to read in. |
... |
Other parameters to be passed to downstream methods. |
Function read.RTqPCR reads in the raw fluorescent data of LC480 light cycler
and Mx3005P RTqPCR and is based on functions read.LC480 and read.Mx3005P.
"RTqPCRBatch" object with exprs slots.
Navneet Phogat, Matthias Kohl, Matthias.Kohl@stamats.de
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ##To read in the fluorescent data of LC480 light cycler
LC480.example <- file.path(path, "LC480_Example.txt")
rtData.LC480 <- read.RTqPCR(LC480.example, PCRtype = "LC480")
rtData.LC480 ## to visualise the overview of data
head(exprs(rtData.LC480)) ## to visualise all of the fluorescence data
head(exprs(rtData.LC480[,1:5])) ## to visualise the first five columns of fluorescence data
head(pData(rtData.LC480)) ## to express the phenoData
head(fData(rtdata.LC480)) ## to express featureData
##To read in the fluorescent data of Mx3005P RT-qPCR
Mx3005P.example <- file.path(path, "Mx3005P_Example.txt")
rtData.Mx <- read.RTqPCR(Mx3005P.example, PCRtype = "Mx3005P")
rtData.Mx ## to visualise the overview of data
head(exprs(rtData.Mx)) ## to visualise all of the fluorescence data
head(exprs(rtData.Mx[,1:5])) ## to express the first five columns of fluorescence data
head(pData(rtData.Mx)) ## to express the phenoData
head(fData(rtData.Mx)) ## to express the featureData
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.