StructuredXStringSet {Structstrings} | R Documentation |
The StructuredXStringSet
class can be used to store structure
information alongside RNA sequences. The class behaves like the
QualityScaledXStringSet
classes.
Please note, that this does not check for validity regarding base pairing capabilities.
StructuredRNAStringSet(x, structure) dotbracket(x) dotbracket(x) <- value ## S4 method for signature 'StructuredXStringSet' dotbracket(x) ## S4 replacement method for signature 'StructuredXStringSet' dotbracket(x) <- value readStructuredRNAStringSet( filepath, nrec = -1L, skip = 0L, seek.first.rec = FALSE, use.names = TRUE ) writeStructuredXStringSet(x, filepath, append = FALSE, compress = FALSE, ...) ## S4 method for signature 'StructuredXStringSet' getBasePairing(x, compress = TRUE, return.sequence = FALSE) ## S4 method for signature 'StructuredXStringSet' getLoopIndices(x, bracket.type, warn.type.drops = TRUE)
x |
For the |
structure, value |
|
use.names, type, filepath, nrec, skip, seek.first.rec, append, ... |
|
compress |
|
return.sequence |
|
bracket.type |
|
warn.type.drops |
See |
the dotbracket
function allows access to the included
DotBracketStringSet
.
a StructuredRNAStringSet
object.
str <- DotBracketStringSet("(())") seq <- RNAStringSet("AGCU") sdbs <- StructuredRNAStringSet(seq,str)