Description Usage Arguments Details Value Author(s) Examples
Function read.Mx3005P
reads in txt files of raw fluorescent data of Mx3005P
RT -qPCR and uses the data to populate an object of class "RTqPCRBatch"
.
1 2 3 4 5 |
file |
the name of the file to read in. |
colNames |
a character vector of names to be assumed for the columns. |
cycleThreshold |
maximum number of cycles which will be read in. |
fileType |
the type of the file. |
skip |
an integer: the number of lines of the data file to skip before beginning to read data. |
header |
a logical value indicating whether the file contains the names of the variables as its first line. If missing, the value is determined from the file format: header is set to TRUE if and only if the first row contains one fewer field than the number of columns. |
sep |
the field separator character. Values on each line of the file are separated by this character.
See |
quote |
the set of quoting characters. To disable quoting altogether, use |
dec |
the character used in the file for decimal points. |
fill |
logical. If TRUE then in case the rows have unequal length, blank fields are implicitly added.
See |
comment.char |
character: a character vector of length one containing a single character or an empty string.
Use |
... |
other parameters to be passed to downstream methods. |
Allows the user to read in qPCR raw fluorescence data from Mx3005P RT-qPCR which has been exported
to a txt-file, alongside phenotypic data. More details on how to read in raw fluorescence data from RT-qPCR
or Light Cycler in the RTqPCR
package vignette.
object of Class "RTqPCRBatch"
with exprs slots.
Navneet Phogat, Matthias Kohl, Matthias.Kohl@stamats.de
1 2 3 4 5 6 7 8 9 10 | path <- system.file("exData", package = "RTqPCR")
Mx3005P.example <- file.path(path, "Mx3005P_Example.txt")
cycData <- read.Mx3005P(Mx3005P.example)
cycData[1:5] ##to visualise the first 5 cycdata and for all data remove [1:5] from the code
featureData(cycData) ## to visualise the overview of the featureData (feature information of data)
fData(cycData)[1:5] ## To visualise the content of the first five featureData
## fData(cycData) To visualise content of all featureData
phenoData(cycData) ## To visualise the overview of phenoData (phenotypic information of data)
pData(cycData)[1:5] ## To visualise the content of the first five phenoData
## pData(cycData) To visualise the content of all phenoData
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.