shared_Rscripts/PCR_formula.R
2021-05-06 11:59:13 +03:00

25 lines
No EOL
742 B
R

#### DESCRIPTION:
# These functions use the PCR equation to calculate
# the number of PCR products after N cycles starting
# from x molecules of the template.
#### HOW TO USE:
# source('https://github.com/dchakro/shared_Rscripts/raw/master/PCR_formula.R')
# prettyNum(PCRamp(1,30),big.mark = " ")
#
# print(paste("Cycle",1:30,"=",
# prettyNum(PCRamp.steps(1,30),
# big.mark = " ")),
# width = 40)
PCRamp = function(x, n){
# calculates number of amplicons starting from x initial DNA molecules in n cycles.
x*((2^n)-2*n)
}
PCRamp.steps = function(x, n){
# calculates progression of generation of amplicons starting from x initial DNA molecules in each of the n cycles
x*(2^(1:n)-2*(1:n))
}