Description Usage Arguments Details Value Note Author(s) References See Also Examples
Assists in the design of single or dual probes targeting a specific group of sequences while minimizing the potential to cross-hybridize with other groups of sequences.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | DesignProbes(tiles,
identifier = "",
start = 1,
end = NULL,
minLength = 17,
maxLength = 26,
maxPermutations = 4,
minCoverage = 0.9,
minGroupCoverage = 0.2,
hybTemp = 46,
P = 2.5e-07,
Na = 1,
FA = 35,
minEfficiency = 0.5,
worstScore = -Inf,
numProbeSets = 0,
batchSize = 1000,
target = "SSU",
verbose = TRUE)
|
tiles |
A set of tiles representing each group of sequences, as in the format created by the function |
identifier |
Optional character string used to narrow the search results to those matching a specific identifier. Determines the target group(s) for which probes will be designed. If "" then all identifiers are selected. |
start |
Integer specifying the starting position in the alignment where potential target sites begin. Preferably a position that is included in most sequences in the alignment. |
end |
Integer specifying the ending position in the alignment where potential target sites end. Preferably a position that is included in most sequences in the alignment. |
minLength |
Integer providing the minimum length of probes to consider in the design. |
maxLength |
Integer providing the maximum length of probes to consider in the design, which must be less than or equal to the |
maxPermutations |
Integer providing the maximum number of probe permutations required to reach the desired coverage of a target site. |
minCoverage |
Numeric giving the minimum fraction of the target group's sequences that must be covered by the designed probe(s). |
minGroupCoverage |
Numeric giving the minimum fraction of the target group that must have sequence information (not terminal gaps) in the target site's region. |
hybTemp |
Numeric specifying the hybridization temperature, typically |
P |
Numeric giving the molar concentration of probes during hybridization. |
Na |
Numeric giving the molar sodium concentration in the hybridization buffer. Values may range between 0.01M and 1M. Note that salt correction from |
FA |
Numeric concentration (as percent v/v) of the denaturant formamide in the hybridization buffer. |
minEfficiency |
Numeric giving the minimum equilibrium hybridization efficiency desired for designed probe(s) at the defined experimental conditions. |
worstScore |
Numeric specifying the score cutoff to remove target sites from consideration. For example, a |
numProbeSets |
Integer giving the optimal number of dual probe sets to design. If set to zero then all potential single probes are returned, and the probe sets minimizing potential false cross-hybridizations are not chosen. |
batchSize |
Integer specifying the number of probes to simulate hybridization per batch that is passed to |
target |
The target molecule used in the generation of tiles. Either |
verbose |
Logical indicating whether to display progress. |
Probes are designed to maximize sensitivity and specificity to the target group(s) (identifier
(s)). If numProbeSets > 0
then that many pairs of probes with minimal cross-hybridization overlap are returned, enabling increased specificity with a dual-color approach.
Probes are designed from a set of tiles to target each identifier
while minimizing affinity for all other tiled groups. Arguments provide constraints that ensure the designed probes meet the specified criteria as well as being optimized for the particular experimental conditions. A search is conducted through all tiles in the same alignment position to estimate the chance of cross-hybridization with a non-target group.
Two models are used in design, both of which were experimentally calibrated using denaturation profiles from 5 organisms belonging to all three domains of life. Probe lengths are chosen to meet the minEfficiency
using a fast model of probe-target hybridization. Candidate probes are then confirmed using a slower model that also takes into account probe-folding and target-folding. Finally, probes are scored for their inability to cross-hybridize with non-target groups by using the fast model and taking into account any mismatches.
A different data.frame
will be returned depending on number of primer sets requested. If no probe sets are required then columns contain the designed probes for every possible position scored by their potential to cross-hybridize with other identified groups. If one or more probe sets are requested then columns contain information for the optimal set of probes (probe one and probe two) that could be used in combination to give the fewest potential cross-hybridizations.
The program OligoArrayAux (http://mfold.rna.albany.edu/?q=DINAMelt/OligoArrayAux) must be installed in a location accessible by the system. For example, the following code should print the installed OligoArrayAux version when executed from the R console:
system("hybrid-min -V")
To install OligoArrayAux from the downloaded source folder on Unix-like platforms, open the shell (or Terminal on Mac OS) and type:
cd oligoarrayaux # change directory to the correct folder name
./configure
make
sudo make install
Erik Wright eswright@pitt.edu
ES Wright et al. (2014) "Automated Design of Probes for rRNA-Targeted Fluorescence In Situ Hybridization Reveals the Advantages of Using Dual Probes for Accurate Identification." Applied and Environmental Microbiology, doi:10.1128/AEM.01685-14.
CalculateEfficiencyFISH
, TileSeqs
1 2 3 4 | db <- system.file("extdata", "Bacteria_175seqs.sqlite", package="DECIPHER")
# not run (must have OligoArrayAux installed first):
## Not run: tiles <- TileSeqs(db, identifier=c("Enterobacteriales","Pseudomonadales"))
## Not run: probes <- DesignProbes(tiles, identifier="Enterobacteriales", start=280, end=420)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.