CqList-class {freqpcr} | R Documentation |
S4 class storing the dummy Cq data for performance test.
Description
A dummy Cq dataset suitable for a package test, typically obtained as the output of make_dummy()
.
Slots
N
Sample sizes as a numeric vector. The
ntrap
andnpertrap
arguments ofmake_dummy()
are inherited to the length of N and eachN[i]
element, the number of individuals (both for haploidy and diploidy) contained in the ith bulk sample, respectively.m
Segregation ratio. As for haploidy,
m
is a matrix with 2 rows andntrap
columns.m[1, i]
andm[2, i]
stores the number of R (mutant) or S (wild type) individuals whileN[i] = sum(m[, i])
specifies the total in the bulk sample. It has 3 rows andntrap
columns as for diploidy. Whilem[1, i]
stands for the number of RR hogozygote individuals,m[2, i]
andm[3, i]
stand for the numbers of RS heterozygotes and SS homozygotes, respectively.xR,xS
Numeric vector of the same length with N.
xR[i]
stores the amount of the template DNA for R allele contained in the ith bulk sample.housek0,target0,housek1,target1
Numeric vectors of the same lengths with N. Store the generated Cq values.
DCW
\Delta
Cq values measured on the control samples (DNA extract without endonuclease digestion in the RED-\Delta\Delta
Cq method, or pure R solution in a general\Delta\Delta
Cq method),DCW
, is defined as (target0 - housek0
).DCD
\Delta
Cq values measured on the test samples (samples after endonuclease digestion in the RED-\Delta\Delta
Cq method, or samples with unknown allele mixing ratios in a general\Delta\Delta
Cq method),DCD
, is defined as (target1 - housek1
).deldel
\Delta\Delta
Cq value, defined as (DCD - DCW
).RFreqMeasure
A classical index of the allele frequency calculated for each bulk sample, which is defined as
(1.0+EPCR)^(-deldel)
. Note that the values ofEPCR
and other parameters, such asP
orK
, are not recorded in the object to avoid leakage of information.ObsP
As
RFreqMeasure
can exceed 1 by definition,ObsP
is defined asmin(RFreqMeasure, 1)
.rand.seed
The seed of the random-number generator (RNG) which was fed to the current R session to generate dummy
m
,xR
andxS
data.