Description Usage Arguments Value See Also Examples
Compute the enthalpy and entropy of helix-coil transition, and then the melting temperature of multiple nucleic acid duplexes in batch.
1 2 |
sequence |
A character vector of 5' to 3' sequences of one strand of the nucleic acid duplex (Note: Uridine and thymidine are not considered as identical). |
comp.sequence |
A character vector of 3' to 5' complementary sequences of the nucleic acid duplex. Complementary sequences are computed by default, but need to be specified in case of mismatches, inosine(s) or hydroxyadenine(s) between the two strands. |
environment.out |
logical. If |
options.out |
logical. If |
message.out |
logical. If |
... |
Arguments for melting temperature computation (See
|
A data frame of the melting temperature computation results along
with the details of environment, options and messages if specified by the
arguments environment.out
, options.out
and message.out
respectively.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | sequence <- c("CAAAAAG", "CAAAAAAG", "TTTTATAATAAA", "CCATCGCTACC",
"CAAACAAAG", "CCATTGCTACC", "CAAAAAAAG", "GTGAAC", "AAAAAAAA",
"CAACTTGATATTATTA", "CAAATAAAG", "GCGAGC", "GGGACC",
"CAAAGAAAG", "CTGACAAGTGTC", "GCGAAAAGCG")
meltingBatch(sequence, nucleic.acid.conc = 0.0004,
hybridisation.type = "dnadna", Na.conc = 1)
seq <- c("GCAUACG", "CAGUAGGUC", "CGCUCGC", "GAGUGGAG", "GACAGGCUG",
"CAGUACGUC", "GACAUCCUG", "GACCACCUG", "CAGAAUGUC", "GCGUCGC",
"CGUCCGG", "GACUCUCUG", "CAGCUGGUC", "GACUAGCUG", "CUCUGCUC",
"GCGUCCG", "GUCCGCG", "CGAUCAC", "GACUACCUG", "GACGAUCUG")
comp.seq <- c("CGUUUGC", "GUCGGCCAG", "GCGUGCG", "CUCUUCUC", "CUGUGCGAC",
"GUCGGGCAG", "CUGUUGGAC", "CUGGGGGAC", "GUCUGGCAG", "CGCUGCG",
"GCUGGCC", "CUGAUAGAC", "GUCGUUCAG", "CUGAGCGAC", "GAGUUGAG",
"CGCUGGC", "CUGGCGC", "GCUUGUG", "CUGAGGGAC", "CUGCCAGAC")
meltingBatch(sequence = seq, comp.seq = comp.seq, nucleic.acid.conc = 0.0004,
hybridisation.type = "rnarna", Na.conc = 1,
method.singleMM = "tur06")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.