Description Usage Arguments Value Functions Examples
Calculate the expected amplifications across a genome for a set of forward and reverse primer binding sites used in multiple strand displacement amplification
1 2 3 4 5 | predictAmplificationsSingleStrand(forwards, reverses, maxLength = 30000,
genomeSize = max(c(forwards + maxLength - 1, reverses)))
predictAmplifications(forwards, reverses, maxLength = 30000,
genomeSize = max(c(forwards + maxLength - 1, reverses)))
|
forwards |
Leftmost positions of primer binding sites landing on the 5' strand (1-based 5'-most base in the genome plus strand) |
reverses |
Rightmost positions of primer binding sites landing on the 3' strand (1-based 3'-most base in the genome plus strand) |
maxLength |
Maximum length fragment generated by polymerase |
genomeSize |
Maximum position possible for amplification |
A data frame with columns:
1-based start coordinate of region
1-based end coordinate of region
number of forward primers spanning the region (for predictAmplificationsSingleStrand)
number of reverse primers spanning the region (for predictAmplificationsSingleStrand)
expected amplifcations for the region
predictAmplifications
: Calculate the expected amplifications across a genome for a set of forward and reverse primer binding sites for both strands
1 2 | predictAmplificationsSingleStrand(c(1,10,20),c(15,25,35),maxLength=40,genomeSize=45)
predictAmplifications(c(1,10,20),c(15,25,35),maxLength=40,genomeSize=45)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.