designAssays | R Documentation |
designAssays()
combines primers to (RT)-PCR assays from an
RprimerOligo
object.
If probes are present in the input dataset,
only assays with a probe present between the primer pair will be kept.
designAssays(x, length = c(65, 120), tmDifferencePrimers = NULL)
x |
An |
length |
Amplicon length range, a numeric vector [40, 5000], defaults to
|
tmDifferencePrimers |
Maximum allowed difference between the mean tm of the forward and reverse
primer (in Celcius degrees, as an absolute value). Defaults to |
An RprimerAssay
object, containing the following information:
Position where the assay starts.
Position where the assay ends.
Length of the amplicon.
Total number of oligos in the assay.
Average oligo score. The best
possible score is 0 and the worst possible score is 9.
See ?oligos
for more information about the scoring system.
Start position of the forward primer.
End positon of the forward primer.
Length of the forward primer.
Forward primer sequence in IUPAC format (i.e. with ambiguous bases).
For ambiguous primers: average identity of the forward primer. For mixed primers: average identity of the 5' (consensus) part of the forward primer. The value can range from 0 to 1.
For ambiguous primers: average coverage of the forward primer. For mixed primers: average coverage of the 3' (degenerate) part of the forward primer. The value can range from 0 to 1.
Number of sequence variants of the forward primer.
Mean GC-content of all sequence variants of the forward primer.
Range in GC-content of all sequence variants of the forward primer.
Mean tm of all sequence variants of the forward primer (in Celcius degrees).
Range in tm of all sequence variants of the forward primer (in Celcius degrees).
Mean delta G of all sequence variants of the forward primer (in kcal/mol).
Range in delta G of all sequence variants of the forward primer (in kcal/mol).
All sequence variants of the forward primer.
GC-content of all sequence variants of the forward primer.
Tm of all sequence variants of the forward primer (in Celcius degrees).
Delta G of all sequence variants of the forward primer (in kcal/mol).
Design method used to generate the forward primer: "ambiguous" or "mixedFwd".
Start position of the reverse primer.
End positon of the reverse primer.
Length of the reverse primer.
Reverse primer sequence in IUPAC format (i.e. with ambiguous bases).
For ambiguous primers: average identity of the reverse primer. For mixed primers: average identity of the 5' (consensus) part of the reverse primer. The value can range from 0 to 1.
For ambiguous primers: average coverage of the reverse primer. For mixed primers: average coverage of the 3' (degenerate) part of the reverse primer. The value can range from 0 to 1.
Number of sequence variants of the reverse primer.
Mean GC-content of all sequence variants of the reverse primer.
Range in GC-content of all sequence variants of the reverse primer.
Mean tm of all sequence variants of the reverse primer (in Celcius degrees).
Range in tm of all sequence variants of the reverse primer (in Celcius degrees).
Mean delta G of all sequence variants of the reverse primer (in kcal/mol).
Range in delta G of all sequence variants of the reverse primer (in kcal/mol).
All sequence variants of the reverse primer.
GC-content of all sequence variants of the reverse primer.
Tm of all sequence variants of the reverse primer (in Celcius degrees).
Delta G of all sequence variants of the reverse primer (in kcal/mol).
Design method used to generate the forward primer: "ambiguous" or "mixedRev.
Start position of the input consensus profile used for oligo design.
End position of the input consensus profile used for oligo design.
If a probe is included in the input RprimerOligo
object,
the following columns are also included:
Start position of the probe.
End positon of the probe.
Length of the probe.
Probe sequence in plus sense, in IUPAC format.
Probe sequence in minus sense, in IUPAC format.
For ambiguous primers: average identity of the probe. For mixed primers: average identity of the 5' (consensus) part of the probe. The value can range from 0 to 1.
For ambiguous primers: average coverage of the probe. For mixed primers: average coverage of the 3' (degenerate) part of the probe. The value can range from 0 to 1.
Number of sequence variants of the probe.
Mean GC-content of all sequence variants of the probe.
Range in GC-content of all sequence variants of the probe.
Mean tm of all sequence variants of the probe (in Celcius degrees).
Range in tm of all sequence variants of the forward primer (in Celcius degrees).
Mean delta G of all sequence variants of the probe (in kcal/mol).
Range in delta G of all sequence variants of the probe (in kcal/mol).
All sequence variants of the probe, in plus sense.
All sequence variants of the probe, in minus sense.
GC-content of all sequence variants of the probe.
Tm of all sequence variants of the probe (in Celcius degrees).
Delta G of all sequence variants of the probe (in kcal/mol).
Design method used to generate the probe.
If the probe is valid in plus sense.
If the probe is valid in minus sense.
An error message will return if no assays are found.
data("exampleRprimerOligo")
## Design assays using default settings
designAssays(exampleRprimerOligo)
## Modify the length range
designAssays(exampleRprimerOligo, length = c(1000, 2000))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.