Description Usage Arguments Details Value Author(s) Examples
Remove the non detects (NA
) of Cq values and amplification efficiencies within
the replicates in the object of class "RTqPCRBatch"
on the basis of statistical concepts
of mean and median.
1 2 | ## S4 method for signature 'RTqPCRBatch'
NonDetects(RTqPCRBatch, Calc = "Mean", ...)
|
RTqPCRBatch |
Object of class |
Calc |
Which method to be used out of |
... |
Other parameters to be passed to downstream methods. |
See the vignettes in RTqPCR package.
"RTqPCRBatch"
object with new exprs and effs 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 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | ## Read in the raw fluorescent data
LC480.example <- file.path(path, "LC480_Example.txt")
cycData.LC480 <- read.RTqPCR(LC480.example, PCRtype = "LC480")
## Read in the sample information data
SampleInfoLC480 <- file.path(path, "LC480_example_SampleInfo.txt")
samInfoLC480 <- read.RTqPCRSampleInfo(SampleInfoLC480, PCRtype = "LC480")
## Merge the fluorescence and sample information data through merge function
merge.LC480<-merge(cycData.LC480,samInfo.LC480)
## Compute the Cq values and amplification efficiencies
Cqeffs.LC480 <- CqValues(merge.LC480, PCRtype = "LC480", Effmethod = "sigfit", baseline = "none")
Cqeffs.LC480 #To see the overview of data
exprs(Cqeffs.LC480)[1:5] ##to visualise the first five CqValues
effs(Cqeffs.LC480)[1:5] ##to visualise the first five amplification efficiencies
exprs(Cqeffs.LC480) ##to visualise all Cq values
effs(Cqeffs.LC480) ##to visualise all amplification efficiencies
## Replace the non-detects (NA) within replicates, based on the concept of mean
## default method is mean.
Cqeffs.NA.mean <- NonDetects(Cqeffs.LC480)
Cqeffs.NA.mean ## To see the overview of data
exprs(Cqeffs.NA.mean)[1:5] ## to visualise the first five Cq values
effs(Cqeffs.NA.mean)[1:5] ## to visualise the first five amplification efficiencies
exprs(Cqeffs.NA.mean) ## to visualise all Cq values
effs(Cqeffs.NA.mean) ## to visualise all amplification efficiencies
## Replace the non-detects (NA) within replicates, based on the concept of median
Cqeffs.NA.med <- NonDetects(Cqeffs.LC480, Calc = "Median")
Cqeffs.NA.med ## To see the overview of data
exprs(Cqeffs.NA.med)[1:5] ## to visualise the first five Cq values
effs(Cqeffs.NA.med)[1:5] ## to visualise the first five amplification efficiencies
exprs(Cqeffs.NA.med) ## to visualise all Cq values
effs(Cqeffs.NA.med) ## to visualise all amplification efficiencies
## The function NonDetects can also be implemented on the outputs of other functions ReplaceValue,
## ReplaceAboveCutOff and NonDetects. For detail, see the vignettes in RTqPCR package.
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.