Description Usage Arguments Value Author(s) Examples
Read the .txt sample information file of raw data of experiment run on RT-qPCRs
(LC480 light cycler and Mx3005P) and use the data to populate an object of "AnnodatedDataFrame"
.
1 | read.RTqPCRSampleInfo(file, PCRtype, ...)
|
file |
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. |
An object of "AnnodatedDataFrame"
.
Navneet Phogat, Matthias Kohl, Matthias.Kohl@stamats.de
1 2 3 4 5 6 7 8 9 10 11 | ## To read in the sample information data of LC480 light cycler
SampleInfoLC480 <- file.path(path, "LC480_example_SampleInfo.txt")
samInfoLC480 <- read.RTqPCRSampleInfo(SampleInfoLC480, PCRtype = "LC480")
samInfoLC480[1:5] ## to visualise the first five sample information data
## To read in the sample information data of Mx3005P RT-qPCR
SampleInfoMx <- file.path(path, "Mx3005P_example_SampleInfo.txt")
samInfoMx <- read.RTqPCRSampleInfo(SampleInfoMx, PCRtype = "Mx3005P")
samInfoMx[1:5] ##to visualise the first five sample information data
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.