dot_bracket_from_structure#
- biotite.structure.dot_bracket_from_structure(nucleic_acid_strand, scores=None, max_pseudoknot_order=None)[source]#
Represent a nucleic-acid-strand in dot-bracket-letter-notation (DBL-notation). [1]
- Parameters:
- nucleic_acid_strandAtomArray
The nucleic acid strand to be represented in DBL-notation.
- scoresndarray, dtype=int, shape=(n,)
The score for each base pair, which is passed on to
pseudoknots().- max_pseudoknot_orderint
The maximum pseudoknot order to be found. If a base pair would be of a higher order, it is represented as unpaired. If
Noneis given, all base pairs are evaluated.
- Returns:
- notationslist [str, …]
The DBL-notation for each solution from
pseudoknots().
See also
base_pairsCompute the base pairs from a structure as passed to this function.
dot_bracketCompute the dot bracket notation directly from base pairs.
pseudoknotsGet the pseudoknot order for each base pair.
References