Skip to content

Common utilities

BPh

Bases: Enum

Base–phosphate interaction classes.

Source code in src/rnapolis/common.py
261
262
263
264
265
266
267
268
269
270
271
272
273
class BPh(Enum):
    """Base–phosphate interaction classes."""

    _0 = "0BPh"
    _1 = "1BPh"
    _2 = "2BPh"
    _3 = "3BPh"
    _4 = "4BPh"
    _5 = "5BPh"
    _6 = "6BPh"
    _7 = "7BPh"
    _8 = "8BPh"
    _9 = "9BPh"

BR

Bases: Enum

Base–ribose interaction classes.

Source code in src/rnapolis/common.py
246
247
248
249
250
251
252
253
254
255
256
257
258
class BR(Enum):
    """Base–ribose interaction classes."""

    _0 = "0BR"
    _1 = "1BR"
    _2 = "2BR"
    _3 = "3BR"
    _4 = "4BR"
    _5 = "5BR"
    _6 = "6BR"
    _7 = "7BR"
    _8 = "8BR"
    _9 = "9BR"

BaseInteractions dataclass

Container for all base-level interactions in a structure.

Source code in src/rnapolis/common.py
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
@dataclass(frozen=True, order=True)
class BaseInteractions:
    """Container for all base-level interactions in a structure."""

    base_pairs: List[BasePair]
    stackings: List[Stacking]
    base_ribose_interactions: List[BaseRibose]
    base_phosphate_interactions: List[BasePhosphate]
    other_interactions: List[OtherInteraction]

    @classmethod
    def from_structure3d(
        cls,
        structure3d: "Structure3D",
        base_pairs: List[BasePair],
        stackings: List[Stacking],
        base_ribose_interactions: List[BaseRibose],
        base_phosphate_interactions: List[BasePhosphate],
        other_interactions: List[OtherInteraction],
    ) -> "BaseInteractions":
        """Unify residue identifiers across interactions based on a 3D structure.

        This method ensures that all interactions share consistent auth/label
        coordinates and, when possible, fills in missing Saenger classes.

        Args:
            structure3d: 3D structure used as a reference.
            base_pairs: List of base-pair interactions.
            stackings: List of stacking interactions.
            base_ribose_interactions: List of base–ribose interactions.
            base_phosphate_interactions: List of base–phosphate interactions.
            other_interactions: List of other interactions.

        Returns:
            BaseInteractions: Normalized interactions container.
        """
        cni2residue = {}
        cni2label = {}
        cni2auth = {}

        for residue3d in structure3d.residues:
            cni = (residue3d.chain, residue3d.number, residue3d.icode or None)
            cni2auth[cni] = residue3d.auth
            cni2label[cni] = residue3d.label
            cni2residue[cni] = residue3d

        def unify_nt(nt: Residue) -> Residue:
            if nt.auth is not None and nt.label is not None:
                return nt
            cni = (nt.chain, nt.number, nt.icode or None)
            if nt.auth is not None:
                return Residue(label=cni2label.get(cni, None), auth=nt.auth)
            if nt.label is not None:
                return Residue(label=nt.label, auth=cni2auth.get(cni, None))
            return nt

        base_pairs_new = []
        for base_pair in base_pairs:
            nt1 = unify_nt(base_pair.nt1)
            nt2 = unify_nt(base_pair.nt2)

            cni1 = (nt1.chain, nt1.number, nt1.icode or None)
            cni2 = (nt2.chain, nt2.number, nt2.icode or None)
            if cni1 not in cni2residue or cni2 not in cni2residue:
                saenger = base_pair.saenger
            else:
                saenger = base_pair.saenger or Saenger.from_leontis_westhof(
                    cni2residue[cni1].one_letter_name,
                    cni2residue[cni2].one_letter_name,
                    base_pair.lw,
                )
            if (
                nt1 != base_pair.nt1
                or nt2 != base_pair.nt2
                or saenger != base_pair.saenger
            ):
                base_pair = BasePair(nt1=nt1, nt2=nt2, lw=base_pair.lw, saenger=saenger)
            base_pairs_new.append(base_pair)

        stackings_new = []
        for stacking in stackings:
            nt1 = unify_nt(stacking.nt1)
            nt2 = unify_nt(stacking.nt2)
            if nt1 != stacking.nt1 or nt2 != stacking.nt2:
                stacking = Stacking(nt1=nt1, nt2=nt2, topology=stacking.topology)
            stackings_new.append(stacking)

        base_ribose_interactions_new = []
        for base_ribose in base_ribose_interactions:
            nt1 = unify_nt(base_ribose.nt1)
            nt2 = unify_nt(base_ribose.nt2)
            if nt1 != base_ribose.nt1 or nt2 != base_ribose.nt2:
                base_ribose = BaseRibose(nt1=nt1, nt2=nt2, br=base_ribose.br)
            base_ribose_interactions_new.append(base_ribose)

        base_phosphate_interactions_new = []
        for base_phosphate in base_phosphate_interactions:
            nt1 = unify_nt(base_phosphate.nt1)
            nt2 = unify_nt(base_phosphate.nt2)
            if nt1 != base_phosphate.nt1 or nt2 != base_phosphate.nt2:
                base_phosphate = BasePhosphate(nt1=nt1, nt2=nt2, bph=base_phosphate.bph)
            base_phosphate_interactions_new.append(base_phosphate)

        other_interactions_new = []
        for other_interaction in other_interactions:
            nt1 = unify_nt(other_interaction.nt1)
            nt2 = unify_nt(other_interaction.nt2)
            if nt1 != other_interaction.nt1 or nt2 != other_interaction.nt2:
                other_interaction = OtherInteraction(nt1=nt1, nt2=nt2)
            other_interactions_new.append(other_interaction)

        return cls(
            base_pairs=base_pairs_new,
            stackings=stackings_new,
            base_ribose_interactions=base_ribose_interactions_new,
            base_phosphate_interactions=base_phosphate_interactions_new,
            other_interactions=other_interactions_new,
        )

from_structure3d(structure3d, base_pairs, stackings, base_ribose_interactions, base_phosphate_interactions, other_interactions) classmethod

Unify residue identifiers across interactions based on a 3D structure.

This method ensures that all interactions share consistent auth/label coordinates and, when possible, fills in missing Saenger classes.

Parameters:

Name Type Description Default
structure3d Structure3D

3D structure used as a reference.

required
base_pairs List[BasePair]

List of base-pair interactions.

required
stackings List[Stacking]

List of stacking interactions.

required
base_ribose_interactions List[BaseRibose]

List of base–ribose interactions.

required
base_phosphate_interactions List[BasePhosphate]

List of base–phosphate interactions.

required
other_interactions List[OtherInteraction]

List of other interactions.

required

Returns:

Name Type Description
BaseInteractions BaseInteractions

Normalized interactions container.

Source code in src/rnapolis/common.py
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
@classmethod
def from_structure3d(
    cls,
    structure3d: "Structure3D",
    base_pairs: List[BasePair],
    stackings: List[Stacking],
    base_ribose_interactions: List[BaseRibose],
    base_phosphate_interactions: List[BasePhosphate],
    other_interactions: List[OtherInteraction],
) -> "BaseInteractions":
    """Unify residue identifiers across interactions based on a 3D structure.

    This method ensures that all interactions share consistent auth/label
    coordinates and, when possible, fills in missing Saenger classes.

    Args:
        structure3d: 3D structure used as a reference.
        base_pairs: List of base-pair interactions.
        stackings: List of stacking interactions.
        base_ribose_interactions: List of base–ribose interactions.
        base_phosphate_interactions: List of base–phosphate interactions.
        other_interactions: List of other interactions.

    Returns:
        BaseInteractions: Normalized interactions container.
    """
    cni2residue = {}
    cni2label = {}
    cni2auth = {}

    for residue3d in structure3d.residues:
        cni = (residue3d.chain, residue3d.number, residue3d.icode or None)
        cni2auth[cni] = residue3d.auth
        cni2label[cni] = residue3d.label
        cni2residue[cni] = residue3d

    def unify_nt(nt: Residue) -> Residue:
        if nt.auth is not None and nt.label is not None:
            return nt
        cni = (nt.chain, nt.number, nt.icode or None)
        if nt.auth is not None:
            return Residue(label=cni2label.get(cni, None), auth=nt.auth)
        if nt.label is not None:
            return Residue(label=nt.label, auth=cni2auth.get(cni, None))
        return nt

    base_pairs_new = []
    for base_pair in base_pairs:
        nt1 = unify_nt(base_pair.nt1)
        nt2 = unify_nt(base_pair.nt2)

        cni1 = (nt1.chain, nt1.number, nt1.icode or None)
        cni2 = (nt2.chain, nt2.number, nt2.icode or None)
        if cni1 not in cni2residue or cni2 not in cni2residue:
            saenger = base_pair.saenger
        else:
            saenger = base_pair.saenger or Saenger.from_leontis_westhof(
                cni2residue[cni1].one_letter_name,
                cni2residue[cni2].one_letter_name,
                base_pair.lw,
            )
        if (
            nt1 != base_pair.nt1
            or nt2 != base_pair.nt2
            or saenger != base_pair.saenger
        ):
            base_pair = BasePair(nt1=nt1, nt2=nt2, lw=base_pair.lw, saenger=saenger)
        base_pairs_new.append(base_pair)

    stackings_new = []
    for stacking in stackings:
        nt1 = unify_nt(stacking.nt1)
        nt2 = unify_nt(stacking.nt2)
        if nt1 != stacking.nt1 or nt2 != stacking.nt2:
            stacking = Stacking(nt1=nt1, nt2=nt2, topology=stacking.topology)
        stackings_new.append(stacking)

    base_ribose_interactions_new = []
    for base_ribose in base_ribose_interactions:
        nt1 = unify_nt(base_ribose.nt1)
        nt2 = unify_nt(base_ribose.nt2)
        if nt1 != base_ribose.nt1 or nt2 != base_ribose.nt2:
            base_ribose = BaseRibose(nt1=nt1, nt2=nt2, br=base_ribose.br)
        base_ribose_interactions_new.append(base_ribose)

    base_phosphate_interactions_new = []
    for base_phosphate in base_phosphate_interactions:
        nt1 = unify_nt(base_phosphate.nt1)
        nt2 = unify_nt(base_phosphate.nt2)
        if nt1 != base_phosphate.nt1 or nt2 != base_phosphate.nt2:
            base_phosphate = BasePhosphate(nt1=nt1, nt2=nt2, bph=base_phosphate.bph)
        base_phosphate_interactions_new.append(base_phosphate)

    other_interactions_new = []
    for other_interaction in other_interactions:
        nt1 = unify_nt(other_interaction.nt1)
        nt2 = unify_nt(other_interaction.nt2)
        if nt1 != other_interaction.nt1 or nt2 != other_interaction.nt2:
            other_interaction = OtherInteraction(nt1=nt1, nt2=nt2)
        other_interactions_new.append(other_interaction)

    return cls(
        base_pairs=base_pairs_new,
        stackings=stackings_new,
        base_ribose_interactions=base_ribose_interactions_new,
        base_phosphate_interactions=base_phosphate_interactions_new,
        other_interactions=other_interactions_new,
    )

BasePair dataclass

Bases: Interaction

Base pair interaction with Leontis–Westhof and Saenger class.

Source code in src/rnapolis/common.py
385
386
387
388
389
390
@dataclass(frozen=True, order=True)
class BasePair(Interaction):
    """Base pair interaction with Leontis–Westhof and Saenger class."""

    lw: LeontisWesthof
    saenger: Optional[Saenger]

BasePhosphate dataclass

Bases: Interaction

Base–phosphate interaction.

Source code in src/rnapolis/common.py
407
408
409
410
411
@dataclass(frozen=True, order=True)
class BasePhosphate(Interaction):
    """Base–phosphate interaction."""

    bph: Optional[BPh]

BaseRibose dataclass

Bases: Interaction

Base–ribose interaction.

Source code in src/rnapolis/common.py
400
401
402
403
404
@dataclass(frozen=True, order=True)
class BaseRibose(Interaction):
    """Base–ribose interaction."""

    br: Optional[BR]

BpSeq dataclass

Sequence and base-pairing information in BPSEQ format.

Source code in src/rnapolis/common.py
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
@dataclass
class BpSeq:
    """Sequence and base-pairing information in BPSEQ format."""

    entries: List[Entry]

    @staticmethod
    def from_string(bpseq_str: str) -> "BpSeq":
        """Parse BPSEQ-formatted text into a BpSeq object.

        Args:
            bpseq_str: Text containing BPSEQ lines.

        Returns:
            Parsed BPSEQ representation.
        """
        entries = []
        for line in bpseq_str.splitlines():
            line = line.strip()
            if len(line) == 0:
                continue
            fields = line.split()
            if len(fields) != 3:
                logging.warning("Failed to find 3 columns in BpSeq line: {}", line)
                continue
            entry = Entry(int(fields[0]), fields[1], int(fields[2]))
            entries.append(entry)
        return BpSeq(entries)

    @staticmethod
    def from_file(bpseq_path: str) -> "BpSeq":
        """Read BPSEQ data from a file path.

        Args:
            bpseq_path: Path to a BPSEQ file.

        Returns:
            Parsed BPSEQ representation.
        """
        with open(bpseq_path) as f:
            return BpSeq.from_string(f.read())

    @staticmethod
    def from_dotbracket(dot_bracket: "DotBracket") -> "BpSeq":
        """Convert dot-bracket representation to BPSEQ entries.

        Args:
            dot_bracket: Dot-bracket representation with sequence and structure.

        Returns:
            BPSEQ representation derived from dot-bracket.
        """
        entries = [
            Entry(i + 1, dot_bracket.sequence[i], 0)
            for i in range(len(dot_bracket.sequence))
        ]
        for i, j in dot_bracket.pairs:
            entries[i].pair = j + 1
            entries[j].pair = i + 1
        return BpSeq(entries)

    def __post_init__(self):
        """Build internal mapping from indices to their pairing partners."""
        self.pairs = {}
        for i, _, j in self.entries:
            if j != 0:
                self.pairs[i] = j
                self.pairs[j] = i

    def __str__(self):
        """Format BPSEQ entries as multi-line text."""
        return "\n".join(("{} {} {}".format(i, c, j) for i, c, j in self.entries))

    def __eq__(self, other):
        """Compare two BpSeq objects entry by entry."""
        return len(self.entries) == len(other.entries) and all(
            ei == ej for ei, ej in zip(self.entries, other.entries)
        )

    @cached_property
    def sequence(self) -> str:
        """Return the nucleotide sequence as a string."""
        return "".join(entry.sequence for entry in self.entries)

    def paired(self, only5to3: bool = False) -> "Iterator[Entry]":
        """Iterate over paired entries.

        Args:
            only5to3: If True, keep only pairs where index < partner.

        Returns:
            Iterator over paired Entry objects.
        """
        result = filter(lambda entry: entry.pair != 0, self.entries)
        if only5to3:
            result = filter(lambda entry: entry.index_ < entry.pair, result)
        return result

    @cached_property
    def __stems_entries(self) -> List[List[Entry]]:
        """Internal helper: group paired entries into stems."""
        stems = []
        entries: List[Entry] = []

        for entry in self.paired(only5to3=True):
            if not entries:
                entries.append(entry)
                continue

            i, _, j = entry
            k, _, l = entries[-1]
            if i == k + 1 and j == l - 1:
                entries.append(entry)
                continue

            stems.append(entries)
            entries = [entry]

        if entries:
            stems.append(entries)

        return stems

    @cached_property
    def elements(
        self,
    ) -> Tuple[List[Stem], List[SingleStrand], List[Hairpin], List[Loop]]:
        """Decompose structure into stems, single strands, hairpins and loops.

        Returns:
            Four lists describing each structural element type.
        """
        return self.compute_elements()

    def compute_elements(
        self,
        dotbracket_override: Optional[str] = None,
    ) -> Tuple[List[Stem], List[SingleStrand], List[Hairpin], List[Loop]]:
        """Decompose structure into stems, single strands, hairpins and loops.

        Args:
            dotbracket_override: If provided, use this dot-bracket string for
                ``Strand.structure`` fields instead of the one derived from this
                BpSeq. This is useful when the element decomposition is done on
                a pseudoknot-free BpSeq but the strand annotations should still
                reflect the full dot-bracket with pseudoknot characters.

        Returns:
            Four lists describing each structural element type.
        """
        if not self.__stems_entries:
            return [], [], [], []

        dotbracket_str = (
            dotbracket_override
            if dotbracket_override is not None
            else self.dot_bracket.structure
        )

        stems, single_strands, hairpins, loops = [], [], [], []
        stopset = set()

        # stems
        for stem_entries in self.__stems_entries:
            stem = Stem.from_bpseq_entries(stem_entries, self.entries, dotbracket_str)
            stems.append(stem)
            stopset.add(stem.strand5p.first - 1)
            stopset.add(stem.strand5p.last - 1)
            stopset.add(stem.strand3p.first - 1)
            stopset.add(stem.strand3p.last - 1)

        stops = sorted(stopset)
        loop_candidates = []

        # 5' single strand
        if stops[0] > 0:
            single_strands.append(
                SingleStrand(
                    Strand.from_bpseq_entries(
                        self.entries[: stops[0] + 1],
                        dotbracket_str,
                    ),
                    True,
                    False,
                )
            )

        # single strands
        for i in range(1, len(stops)):
            candidate = self.entries[stops[i - 1] : stops[i] + 1]
            if all([entry.pair == 0 for entry in candidate[1:-1]]):
                if candidate[0].pair == candidate[-1].index_:
                    hairpins.append(
                        Hairpin(Strand.from_bpseq_entries(candidate, dotbracket_str))
                    )
                else:
                    loop_candidates.append(
                        Strand.from_bpseq_entries(candidate, dotbracket_str)
                    )

        # 3' single strand
        if stops[-1] < len(self.entries) - 1:
            single_strands.append(
                SingleStrand(
                    Strand.from_bpseq_entries(
                        self.entries[stops[-1] :], dotbracket_str
                    ),
                    False,
                    True,
                )
            )

        graph = defaultdict(set)

        for i in range(len(loop_candidates)):
            for j in range(i + 1, len(loop_candidates)):
                i_first, i_last = loop_candidates[i].first, loop_candidates[i].last
                j_first, j_last = loop_candidates[j].first, loop_candidates[j].last
                if self.entries[i_last - 1].pair == j_first:
                    graph[i].add(j)
                if self.entries[j_last - 1].pair == i_first:
                    graph[j].add(i)

        used = set()

        for i in range(len(loop_candidates)):
            if i in used:
                continue

            loop = [loop_candidates[i]]

            while True:
                for j in graph[i]:
                    if (
                        loop_candidates[j] not in used
                        and loop_candidates[j] not in loop
                    ):
                        loop.append(loop_candidates[j])
                        i = j
                        break
                else:
                    break

            if self.entries[loop[0].first - 1].pair == loop[-1].last:
                # Skip degenerate 2-strand "loops" where both strands consist
                # solely of paired boundary residues (length <= 2) with no
                # unpaired nucleotides.  Such a loop merely re-describes the
                # outer boundary of a single stem.
                if len(loop) == 2 and all(s.last - s.first + 1 <= 2 for s in loop):
                    used.update(loop)
                    continue
                loops.append(Loop(loop))
                used.update(loop)

        for loop_candidate in loop_candidates:
            if loop_candidate not in used:
                single_strands.append(SingleStrand(loop_candidate, False, False))

        return stems, single_strands, hairpins, loops

    @cached_property
    def graphviz(self):
        """Create and render a Graphviz graph of structural elements."""
        stems, single_strands, hairpins, loops = self.elements
        graph = defaultdict(set)
        dot = graphviz.Graph()

        for single_strand in single_strands:
            graph[str(single_strand)].update(
                [
                    single_strand.strand.first,
                    single_strand.strand.last,
                ]
            )

        for stem in stems:
            if stem.strand5p.first == stem.strand5p.last:
                continue
            graph[str(stem)].update(
                [
                    stem.strand5p.first,
                    stem.strand5p.last,
                    stem.strand3p.first,
                    stem.strand3p.last,
                ]
            )

        for hairpin in hairpins:
            graph[str(hairpin)].update(
                [
                    hairpin.strand.first,
                    hairpin.strand.last,
                ]
            )

        for loop in loops:
            stops = set()
            for strand in loop.strands:
                stops.update(
                    [
                        strand.first,
                        strand.last,
                    ]
                )
            graph[str(loop)].update(stops)

        for i, element in enumerate(graph.keys()):
            dot.node(f"E{i}", str(element))

        keys = list(graph.keys())

        for i in range(len(keys)):
            for j in range(i + 1, len(keys)):
                if graph[keys[i]].intersection(graph[keys[j]]):
                    dot.edge(f"E{i}", f"E{j}")

        return dot.render()

    @cached_property
    def __regions(self) -> List[Tuple[int, int, int]]:
        """Internal helper: list of stem regions (start, partner, length)."""
        return [
            (stem_entries[0].index_, stem_entries[0].pair, len(stem_entries))
            for stem_entries in self.__stems_entries
        ]

    @cached_property
    def dot_bracket(self):
        """Convert BPSEQ information to dot-bracket using MILP solver if available."""
        if pulp.HiGHS_CMD().available():
            solver = pulp.HiGHS_CMD()  # much faster than default
        else:
            solver = pulp.LpSolverDefault
        if solver is not None:
            solver.msg = False
        return self.convert_to_dot_bracket(solver)

    def convert_to_dot_bracket(self, solver: pulp.LpSolver) -> "DotBracket":
        """Convert BPSEQ to dot-bracket using a given PuLP solver.

        If the solver is not available or the problem is infeasible,
        the method falls back to a greedy FCFS algorithm.

        Args:
            solver: PuLP MILP solver instance or None.

        Returns:
            DotBracket: Dot-bracket representation of the structure.
        """
        # if PuLP solvers are not installed, use FCFS
        if solver is None:
            return self.fcfs()

        # build conflict graph
        regions = self.__regions
        graph = defaultdict(set)

        for i, j in itertools.combinations(range(len(regions)), 2):
            ri, rj = regions[i], regions[j]
            k, l, _ = ri
            m, n, _ = rj

            # is pseudoknot?
            if (k < m < l < n) or (m < k < n < l):
                graph[i].add(j)
                graph[j].add(i)

        # return all non-pseudoknotted if the graph is empty
        if not graph:
            return self.__make_dot_bracket(regions, [0 for _ in range(len(regions))])

        # determine maximum pseudoknot order as chromatic number bound equal to maximum vertex degree + 1
        max_order = max(map(len, graph.values())) + 1

        # define the problem
        problem = pulp.LpProblem("POA", pulp.LpMaximize)

        # create decision variables
        variables = []
        vars_by_region = defaultdict(list)
        vars_by_order = defaultdict(list)
        var_by_region_order = {}
        region_by_var = {}
        for i in range(len(regions)):
            for j in range(max_order):
                variable = pulp.LpVariable(f"x_{i}_{j}", 0, 1, pulp.LpInteger)
                variables.append(variable)
                vars_by_region[i].append(variable)
                vars_by_order[j].append(variable)
                var_by_region_order[(i, j)] = variable
                region_by_var[variable] = regions[i]

        # define objective function terms
        terms = []

        for order, vars in vars_by_order.items():
            for var in vars:
                length = region_by_var[var][2]
                if order == 0:
                    terms.append(var * length)
                else:
                    terms.append(-1 * var * length * order)

        # define objective function
        problem += pulp.lpSum(terms)

        # define constraints that each region is assigned to exactly one order
        for region_vars in vars_by_region.values():
            problem += pulp.lpSum(region_vars) == 1

        # define constraints that no two adjacent regions are assigned to the same order
        for i in graph.keys():
            for j in graph[i]:
                for order in range(max_order):
                    problem += (
                        var_by_region_order[(i, order)]
                        + var_by_region_order[(j, order)]
                        <= 1
                    )

        # solve the problem
        try:
            logging.debug(f"POA: problem formulation\n{problem}")
            problem.solve(solver)
        except pulp.PulpSolverError:
            logging.warning(
                "POA: failed to solve problem using MILP approach, fallback to FCFS"
            )
            return self.fcfs()

        # if problem is infeasible, fallback to FCFS
        if problem.status != pulp.LpStatusOptimal:
            logging.warning("POA: problem is infeasible, fallback to FCFS")
            return self.fcfs()

        # log solver time statistics
        logging.debug(
            f"POA: solver {solver.name} took {round(problem.solutionTime, 2)} seconds"
        )

        # map variable values to orders
        orders = [0 for _ in range(len(regions))]
        for variable in problem.variables():
            if variable.varValue == 1:
                name = variable.getName()
                i, order = map(int, name.split("_")[1:])
                orders[i] = order

        return self.__make_dot_bracket(regions, orders)

    def __make_dot_bracket(self, regions, orders) -> "DotBracket":
        """Internal helper: build final dot-bracket object from regions and orders.

        Returns:
            Dot-bracket representation built from the given stem regions and orders.
        """
        # build dot-bracket
        sequence = self.sequence
        structure = ["." for _ in range(len(sequence))]
        brackets = ["()", "[]", "{}", "<>"] + [
            "".join(p) for p in zip(string.ascii_uppercase, string.ascii_lowercase)
        ]

        for i, stem in enumerate(regions):
            bracket = brackets[orders[i]]
            j, k, n = stem

            while n > 0:
                structure[j - 1] = bracket[0]
                structure[k - 1] = bracket[1]
                j += 1
                k -= 1
                n -= 1

        structure = "".join(structure)
        return DotBracket.from_string(sequence, structure)

    @cached_property
    def fcfs(self) -> "DotBracket":
        """Greedy FCFS (first-come, first-served) conversion to dot-bracket.

        Returns:
            Dot-bracket representation produced by the FCFS heuristic.
        """
        regions = [
            (stem_entries[0].index_, stem_entries[0].pair, len(stem_entries))
            for stem_entries in self.__stems_entries
        ]
        orders = [0 for i in range(len(regions))]

        for i in range(1, len(regions)):
            k, l, _ = regions[i]
            available = [True for _ in range(len("([{<" + string.ascii_uppercase))]

            for j in range(i):
                m, n, _ = regions[j]
                conflicted = (k < m < l < n) or (m < k < n < l)

                if conflicted:
                    available[orders[j]] = False

            order = next(filter(lambda i: available[i] is True, range(len(available))))
            orders[i] = order

        return self.__make_dot_bracket(regions, orders)

    @cached_property
    def all_dot_brackets(self) -> list[str]:
        """Enumerate all valid dot-bracket solutions for pseudoknotted structures.

        Returns:
            List of possible dot-bracket assignments.
        """
        # build conflict graph
        regions = self.__regions
        graph = defaultdict(set)

        for i, j in itertools.combinations(range(len(regions)), 2):
            ri, rj = regions[i], regions[j]
            k, l, _ = ri
            m, n, _ = rj

            # is pseudoknot?
            if (k < m < l < n) or (m < k < n < l):
                graph[i].add(j)
                graph[j].add(i)

        # early exit for non-pseudoknotted structures
        vertices = list(graph.keys())
        if not vertices:
            return [self.fcfs]

        # find all connected components
        visited = {vertex: False for vertex in vertices}
        components = []

        for vertex in vertices:
            if not visited[vertex]:
                visited[vertex] = True
                stack = [vertex]
                components.append([vertex])

                while stack:
                    current = stack[-1]
                    next_vertex = None

                    for neighbor in graph[current]:
                        if not visited[neighbor]:
                            next_vertex = neighbor
                            break

                    if next_vertex is not None:
                        visited[next_vertex] = True
                        stack.append(next_vertex)
                        components[-1].append(next_vertex)
                    else:
                        stack.pop()

        # find unique orders for each component
        unique = []
        for component in components:
            unique.append(set())

            for permutation in itertools.permutations(component):
                orders = {region: 0 for region in component}

                for i in range(1, len(permutation)):
                    available = [True for _ in range(len(component))]

                    for j in range(i):
                        if permutation[j] in graph[permutation[i]]:
                            available[orders[permutation[j]]] = False

                    order = next(
                        filter(lambda k: available[k] is True, range(len(available)))
                    )
                    orders[permutation[i]] = order

                unique[-1].add(frozenset(orders.items()))

        # generate all possible dot-brackets
        solutions = set()
        for assignment in itertools.product(*unique):
            orders = {region: 0 for region in range(len(regions))}

            for order in assignment:
                orders.update(order)

            solutions.add(self.__make_dot_bracket(regions, orders))
        return list(solutions)

    def without_pseudoknots(self) -> "BpSeq":
        """Return BPSEQ converted to dot-bracket with pseudoknots removed.

        Returns:
            New BPSEQ object with all pseudoknots removed.
        """
        return BpSeq.from_dotbracket(self.dot_bracket.without_pseudoknots())

    def without_isolated(self) -> "BpSeq":
        """Return BpSeq with isolated base pairs unpaired.

        Returns:
            New BPSEQ object where isolated base pairs have been unpaired.
        """
        stems, _, _, _ = self.elements
        to_unpair = []

        for stem in stems:
            if stem.strand5p.first == stem.strand5p.last:
                to_unpair.append(stem.strand5p.first - 1)
                to_unpair.append(stem.strand3p.first - 1)

        if not to_unpair:
            return self

        entries = self.entries.copy()
        for i in to_unpair:
            entries[i].pair = 0

        return BpSeq(entries)

__regions cached property

Internal helper: list of stem regions (start, partner, length).

__stems_entries cached property

Internal helper: group paired entries into stems.

all_dot_brackets cached property

Enumerate all valid dot-bracket solutions for pseudoknotted structures.

Returns:

Type Description
list[str]

List of possible dot-bracket assignments.

dot_bracket cached property

Convert BPSEQ information to dot-bracket using MILP solver if available.

elements cached property

Decompose structure into stems, single strands, hairpins and loops.

Returns:

Type Description
Tuple[List[Stem], List[SingleStrand], List[Hairpin], List[Loop]]

Four lists describing each structural element type.

fcfs cached property

Greedy FCFS (first-come, first-served) conversion to dot-bracket.

Returns:

Type Description
DotBracket

Dot-bracket representation produced by the FCFS heuristic.

graphviz cached property

Create and render a Graphviz graph of structural elements.

sequence cached property

Return the nucleotide sequence as a string.

__eq__(other)

Compare two BpSeq objects entry by entry.

Source code in src/rnapolis/common.py
669
670
671
672
673
def __eq__(self, other):
    """Compare two BpSeq objects entry by entry."""
    return len(self.entries) == len(other.entries) and all(
        ei == ej for ei, ej in zip(self.entries, other.entries)
    )

__make_dot_bracket(regions, orders)

Internal helper: build final dot-bracket object from regions and orders.

Returns:

Type Description
DotBracket

Dot-bracket representation built from the given stem regions and orders.

Source code in src/rnapolis/common.py
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
def __make_dot_bracket(self, regions, orders) -> "DotBracket":
    """Internal helper: build final dot-bracket object from regions and orders.

    Returns:
        Dot-bracket representation built from the given stem regions and orders.
    """
    # build dot-bracket
    sequence = self.sequence
    structure = ["." for _ in range(len(sequence))]
    brackets = ["()", "[]", "{}", "<>"] + [
        "".join(p) for p in zip(string.ascii_uppercase, string.ascii_lowercase)
    ]

    for i, stem in enumerate(regions):
        bracket = brackets[orders[i]]
        j, k, n = stem

        while n > 0:
            structure[j - 1] = bracket[0]
            structure[k - 1] = bracket[1]
            j += 1
            k -= 1
            n -= 1

    structure = "".join(structure)
    return DotBracket.from_string(sequence, structure)

__post_init__()

Build internal mapping from indices to their pairing partners.

Source code in src/rnapolis/common.py
657
658
659
660
661
662
663
def __post_init__(self):
    """Build internal mapping from indices to their pairing partners."""
    self.pairs = {}
    for i, _, j in self.entries:
        if j != 0:
            self.pairs[i] = j
            self.pairs[j] = i

__str__()

Format BPSEQ entries as multi-line text.

Source code in src/rnapolis/common.py
665
666
667
def __str__(self):
    """Format BPSEQ entries as multi-line text."""
    return "\n".join(("{} {} {}".format(i, c, j) for i, c, j in self.entries))

compute_elements(dotbracket_override=None)

Decompose structure into stems, single strands, hairpins and loops.

Parameters:

Name Type Description Default
dotbracket_override Optional[str]

If provided, use this dot-bracket string for Strand.structure fields instead of the one derived from this BpSeq. This is useful when the element decomposition is done on a pseudoknot-free BpSeq but the strand annotations should still reflect the full dot-bracket with pseudoknot characters.

None

Returns:

Type Description
Tuple[List[Stem], List[SingleStrand], List[Hairpin], List[Loop]]

Four lists describing each structural element type.

Source code in src/rnapolis/common.py
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
def compute_elements(
    self,
    dotbracket_override: Optional[str] = None,
) -> Tuple[List[Stem], List[SingleStrand], List[Hairpin], List[Loop]]:
    """Decompose structure into stems, single strands, hairpins and loops.

    Args:
        dotbracket_override: If provided, use this dot-bracket string for
            ``Strand.structure`` fields instead of the one derived from this
            BpSeq. This is useful when the element decomposition is done on
            a pseudoknot-free BpSeq but the strand annotations should still
            reflect the full dot-bracket with pseudoknot characters.

    Returns:
        Four lists describing each structural element type.
    """
    if not self.__stems_entries:
        return [], [], [], []

    dotbracket_str = (
        dotbracket_override
        if dotbracket_override is not None
        else self.dot_bracket.structure
    )

    stems, single_strands, hairpins, loops = [], [], [], []
    stopset = set()

    # stems
    for stem_entries in self.__stems_entries:
        stem = Stem.from_bpseq_entries(stem_entries, self.entries, dotbracket_str)
        stems.append(stem)
        stopset.add(stem.strand5p.first - 1)
        stopset.add(stem.strand5p.last - 1)
        stopset.add(stem.strand3p.first - 1)
        stopset.add(stem.strand3p.last - 1)

    stops = sorted(stopset)
    loop_candidates = []

    # 5' single strand
    if stops[0] > 0:
        single_strands.append(
            SingleStrand(
                Strand.from_bpseq_entries(
                    self.entries[: stops[0] + 1],
                    dotbracket_str,
                ),
                True,
                False,
            )
        )

    # single strands
    for i in range(1, len(stops)):
        candidate = self.entries[stops[i - 1] : stops[i] + 1]
        if all([entry.pair == 0 for entry in candidate[1:-1]]):
            if candidate[0].pair == candidate[-1].index_:
                hairpins.append(
                    Hairpin(Strand.from_bpseq_entries(candidate, dotbracket_str))
                )
            else:
                loop_candidates.append(
                    Strand.from_bpseq_entries(candidate, dotbracket_str)
                )

    # 3' single strand
    if stops[-1] < len(self.entries) - 1:
        single_strands.append(
            SingleStrand(
                Strand.from_bpseq_entries(
                    self.entries[stops[-1] :], dotbracket_str
                ),
                False,
                True,
            )
        )

    graph = defaultdict(set)

    for i in range(len(loop_candidates)):
        for j in range(i + 1, len(loop_candidates)):
            i_first, i_last = loop_candidates[i].first, loop_candidates[i].last
            j_first, j_last = loop_candidates[j].first, loop_candidates[j].last
            if self.entries[i_last - 1].pair == j_first:
                graph[i].add(j)
            if self.entries[j_last - 1].pair == i_first:
                graph[j].add(i)

    used = set()

    for i in range(len(loop_candidates)):
        if i in used:
            continue

        loop = [loop_candidates[i]]

        while True:
            for j in graph[i]:
                if (
                    loop_candidates[j] not in used
                    and loop_candidates[j] not in loop
                ):
                    loop.append(loop_candidates[j])
                    i = j
                    break
            else:
                break

        if self.entries[loop[0].first - 1].pair == loop[-1].last:
            # Skip degenerate 2-strand "loops" where both strands consist
            # solely of paired boundary residues (length <= 2) with no
            # unpaired nucleotides.  Such a loop merely re-describes the
            # outer boundary of a single stem.
            if len(loop) == 2 and all(s.last - s.first + 1 <= 2 for s in loop):
                used.update(loop)
                continue
            loops.append(Loop(loop))
            used.update(loop)

    for loop_candidate in loop_candidates:
        if loop_candidate not in used:
            single_strands.append(SingleStrand(loop_candidate, False, False))

    return stems, single_strands, hairpins, loops

convert_to_dot_bracket(solver)

Convert BPSEQ to dot-bracket using a given PuLP solver.

If the solver is not available or the problem is infeasible, the method falls back to a greedy FCFS algorithm.

Parameters:

Name Type Description Default
solver LpSolver

PuLP MILP solver instance or None.

required

Returns:

Name Type Description
DotBracket DotBracket

Dot-bracket representation of the structure.

Source code in src/rnapolis/common.py
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
def convert_to_dot_bracket(self, solver: pulp.LpSolver) -> "DotBracket":
    """Convert BPSEQ to dot-bracket using a given PuLP solver.

    If the solver is not available or the problem is infeasible,
    the method falls back to a greedy FCFS algorithm.

    Args:
        solver: PuLP MILP solver instance or None.

    Returns:
        DotBracket: Dot-bracket representation of the structure.
    """
    # if PuLP solvers are not installed, use FCFS
    if solver is None:
        return self.fcfs()

    # build conflict graph
    regions = self.__regions
    graph = defaultdict(set)

    for i, j in itertools.combinations(range(len(regions)), 2):
        ri, rj = regions[i], regions[j]
        k, l, _ = ri
        m, n, _ = rj

        # is pseudoknot?
        if (k < m < l < n) or (m < k < n < l):
            graph[i].add(j)
            graph[j].add(i)

    # return all non-pseudoknotted if the graph is empty
    if not graph:
        return self.__make_dot_bracket(regions, [0 for _ in range(len(regions))])

    # determine maximum pseudoknot order as chromatic number bound equal to maximum vertex degree + 1
    max_order = max(map(len, graph.values())) + 1

    # define the problem
    problem = pulp.LpProblem("POA", pulp.LpMaximize)

    # create decision variables
    variables = []
    vars_by_region = defaultdict(list)
    vars_by_order = defaultdict(list)
    var_by_region_order = {}
    region_by_var = {}
    for i in range(len(regions)):
        for j in range(max_order):
            variable = pulp.LpVariable(f"x_{i}_{j}", 0, 1, pulp.LpInteger)
            variables.append(variable)
            vars_by_region[i].append(variable)
            vars_by_order[j].append(variable)
            var_by_region_order[(i, j)] = variable
            region_by_var[variable] = regions[i]

    # define objective function terms
    terms = []

    for order, vars in vars_by_order.items():
        for var in vars:
            length = region_by_var[var][2]
            if order == 0:
                terms.append(var * length)
            else:
                terms.append(-1 * var * length * order)

    # define objective function
    problem += pulp.lpSum(terms)

    # define constraints that each region is assigned to exactly one order
    for region_vars in vars_by_region.values():
        problem += pulp.lpSum(region_vars) == 1

    # define constraints that no two adjacent regions are assigned to the same order
    for i in graph.keys():
        for j in graph[i]:
            for order in range(max_order):
                problem += (
                    var_by_region_order[(i, order)]
                    + var_by_region_order[(j, order)]
                    <= 1
                )

    # solve the problem
    try:
        logging.debug(f"POA: problem formulation\n{problem}")
        problem.solve(solver)
    except pulp.PulpSolverError:
        logging.warning(
            "POA: failed to solve problem using MILP approach, fallback to FCFS"
        )
        return self.fcfs()

    # if problem is infeasible, fallback to FCFS
    if problem.status != pulp.LpStatusOptimal:
        logging.warning("POA: problem is infeasible, fallback to FCFS")
        return self.fcfs()

    # log solver time statistics
    logging.debug(
        f"POA: solver {solver.name} took {round(problem.solutionTime, 2)} seconds"
    )

    # map variable values to orders
    orders = [0 for _ in range(len(regions))]
    for variable in problem.variables():
        if variable.varValue == 1:
            name = variable.getName()
            i, order = map(int, name.split("_")[1:])
            orders[i] = order

    return self.__make_dot_bracket(regions, orders)

from_dotbracket(dot_bracket) staticmethod

Convert dot-bracket representation to BPSEQ entries.

Parameters:

Name Type Description Default
dot_bracket DotBracket

Dot-bracket representation with sequence and structure.

required

Returns:

Type Description
BpSeq

BPSEQ representation derived from dot-bracket.

Source code in src/rnapolis/common.py
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
@staticmethod
def from_dotbracket(dot_bracket: "DotBracket") -> "BpSeq":
    """Convert dot-bracket representation to BPSEQ entries.

    Args:
        dot_bracket: Dot-bracket representation with sequence and structure.

    Returns:
        BPSEQ representation derived from dot-bracket.
    """
    entries = [
        Entry(i + 1, dot_bracket.sequence[i], 0)
        for i in range(len(dot_bracket.sequence))
    ]
    for i, j in dot_bracket.pairs:
        entries[i].pair = j + 1
        entries[j].pair = i + 1
    return BpSeq(entries)

from_file(bpseq_path) staticmethod

Read BPSEQ data from a file path.

Parameters:

Name Type Description Default
bpseq_path str

Path to a BPSEQ file.

required

Returns:

Type Description
BpSeq

Parsed BPSEQ representation.

Source code in src/rnapolis/common.py
625
626
627
628
629
630
631
632
633
634
635
636
@staticmethod
def from_file(bpseq_path: str) -> "BpSeq":
    """Read BPSEQ data from a file path.

    Args:
        bpseq_path: Path to a BPSEQ file.

    Returns:
        Parsed BPSEQ representation.
    """
    with open(bpseq_path) as f:
        return BpSeq.from_string(f.read())

from_string(bpseq_str) staticmethod

Parse BPSEQ-formatted text into a BpSeq object.

Parameters:

Name Type Description Default
bpseq_str str

Text containing BPSEQ lines.

required

Returns:

Type Description
BpSeq

Parsed BPSEQ representation.

Source code in src/rnapolis/common.py
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
@staticmethod
def from_string(bpseq_str: str) -> "BpSeq":
    """Parse BPSEQ-formatted text into a BpSeq object.

    Args:
        bpseq_str: Text containing BPSEQ lines.

    Returns:
        Parsed BPSEQ representation.
    """
    entries = []
    for line in bpseq_str.splitlines():
        line = line.strip()
        if len(line) == 0:
            continue
        fields = line.split()
        if len(fields) != 3:
            logging.warning("Failed to find 3 columns in BpSeq line: {}", line)
            continue
        entry = Entry(int(fields[0]), fields[1], int(fields[2]))
        entries.append(entry)
    return BpSeq(entries)

paired(only5to3=False)

Iterate over paired entries.

Parameters:

Name Type Description Default
only5to3 bool

If True, keep only pairs where index < partner.

False

Returns:

Type Description
Iterator[Entry]

Iterator over paired Entry objects.

Source code in src/rnapolis/common.py
680
681
682
683
684
685
686
687
688
689
690
691
692
def paired(self, only5to3: bool = False) -> "Iterator[Entry]":
    """Iterate over paired entries.

    Args:
        only5to3: If True, keep only pairs where index < partner.

    Returns:
        Iterator over paired Entry objects.
    """
    result = filter(lambda entry: entry.pair != 0, self.entries)
    if only5to3:
        result = filter(lambda entry: entry.index_ < entry.pair, result)
    return result

without_isolated()

Return BpSeq with isolated base pairs unpaired.

Returns:

Type Description
BpSeq

New BPSEQ object where isolated base pairs have been unpaired.

Source code in src/rnapolis/common.py
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
def without_isolated(self) -> "BpSeq":
    """Return BpSeq with isolated base pairs unpaired.

    Returns:
        New BPSEQ object where isolated base pairs have been unpaired.
    """
    stems, _, _, _ = self.elements
    to_unpair = []

    for stem in stems:
        if stem.strand5p.first == stem.strand5p.last:
            to_unpair.append(stem.strand5p.first - 1)
            to_unpair.append(stem.strand3p.first - 1)

    if not to_unpair:
        return self

    entries = self.entries.copy()
    for i in to_unpair:
        entries[i].pair = 0

    return BpSeq(entries)

without_pseudoknots()

Return BPSEQ converted to dot-bracket with pseudoknots removed.

Returns:

Type Description
BpSeq

New BPSEQ object with all pseudoknots removed.

Source code in src/rnapolis/common.py
1187
1188
1189
1190
1191
1192
1193
def without_pseudoknots(self) -> "BpSeq":
    """Return BPSEQ converted to dot-bracket with pseudoknots removed.

    Returns:
        New BPSEQ object with all pseudoknots removed.
    """
    return BpSeq.from_dotbracket(self.dot_bracket.without_pseudoknots())

DotBracket dataclass

Sequence and structure in dot-bracket notation.

Source code in src/rnapolis/common.py
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
@dataclass
class DotBracket:
    """Sequence and structure in dot-bracket notation."""

    sequence: str
    structure: str

    @staticmethod
    def from_file(path: str) -> "DotBracket":
        """Read DotBracket from a file with 2–3 lines.

        Args:
            path: Path to a file with sequence and structure lines.

        Returns:
            Parsed dot-bracket object.
        """
        with open(path) as f:
            lines = f.readlines()
        if len(lines) == 2:
            return DotBracket.from_string(lines[0].rstrip(), lines[1].rstrip())
        if len(lines) == 3:
            return DotBracket.from_string(lines[1].rstrip(), lines[2].rstrip())
        raise RuntimeError(f"Failed to read DotBracket from file: {path}")

    @staticmethod
    def from_string(sequence: str, structure: str) -> "DotBracket":
        """Create a DotBracket object from raw sequence and structure strings.

        Args:
            sequence: Nucleotide sequence.
            structure: Dot-bracket string of the same length.

        Returns:
            New dot-bracket object.

        Raises:
            ValueError: If sequence and structure lengths differ.
        """
        if len(sequence) != len(structure):
            raise ValueError(
                "Sequence and structure lengths differ, {} vs {}",
                (len(sequence), len(structure)),
            )
        return DotBracket(sequence, structure)

    def __post_init__(self):
        """Parse structure string into a list of paired indices."""
        self.pairs = []

        opening = "([{<" + string.ascii_uppercase
        closing = ")]}>" + string.ascii_lowercase
        begins = {bracket: list() for bracket in opening}
        matches = {end: begin for begin, end in zip(opening, closing)}

        for i in range(len(self.structure)):
            c = self.structure[i]
            if c in opening:
                begins[c].append(i)
            elif c in closing:
                begin = matches[c]
                self.pairs.append((begins[begin].pop(), i))

    def __str__(self):
        """Return sequence and structure as two lines of text."""
        return f"{self.sequence}\n{self.structure}"

    def __eq__(self, other):
        """Compare dot-bracket objects by sequence and structure."""
        return self.sequence == other.sequence and self.structure == other.structure

    def __hash__(self) -> int:
        """Hash dot-bracket based on sequence and structure."""
        return hash((self.sequence, self.structure))

    def without_pseudoknots(self) -> "DotBracket":
        """Return a copy with pseudoknot brackets replaced by dots.

        Returns:
            New dot-bracket object with pseudoknots removed.
        """
        structure = re.sub(r"[\[\]\{\}\<\>A-Za-z]", ".", self.structure)
        return DotBracket(self.sequence, structure)

__eq__(other)

Compare dot-bracket objects by sequence and structure.

Source code in src/rnapolis/common.py
1286
1287
1288
def __eq__(self, other):
    """Compare dot-bracket objects by sequence and structure."""
    return self.sequence == other.sequence and self.structure == other.structure

__hash__()

Hash dot-bracket based on sequence and structure.

Source code in src/rnapolis/common.py
1290
1291
1292
def __hash__(self) -> int:
    """Hash dot-bracket based on sequence and structure."""
    return hash((self.sequence, self.structure))

__post_init__()

Parse structure string into a list of paired indices.

Source code in src/rnapolis/common.py
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
def __post_init__(self):
    """Parse structure string into a list of paired indices."""
    self.pairs = []

    opening = "([{<" + string.ascii_uppercase
    closing = ")]}>" + string.ascii_lowercase
    begins = {bracket: list() for bracket in opening}
    matches = {end: begin for begin, end in zip(opening, closing)}

    for i in range(len(self.structure)):
        c = self.structure[i]
        if c in opening:
            begins[c].append(i)
        elif c in closing:
            begin = matches[c]
            self.pairs.append((begins[begin].pop(), i))

__str__()

Return sequence and structure as two lines of text.

Source code in src/rnapolis/common.py
1282
1283
1284
def __str__(self):
    """Return sequence and structure as two lines of text."""
    return f"{self.sequence}\n{self.structure}"

from_file(path) staticmethod

Read DotBracket from a file with 2–3 lines.

Parameters:

Name Type Description Default
path str

Path to a file with sequence and structure lines.

required

Returns:

Type Description
DotBracket

Parsed dot-bracket object.

Source code in src/rnapolis/common.py
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
@staticmethod
def from_file(path: str) -> "DotBracket":
    """Read DotBracket from a file with 2–3 lines.

    Args:
        path: Path to a file with sequence and structure lines.

    Returns:
        Parsed dot-bracket object.
    """
    with open(path) as f:
        lines = f.readlines()
    if len(lines) == 2:
        return DotBracket.from_string(lines[0].rstrip(), lines[1].rstrip())
    if len(lines) == 3:
        return DotBracket.from_string(lines[1].rstrip(), lines[2].rstrip())
    raise RuntimeError(f"Failed to read DotBracket from file: {path}")

from_string(sequence, structure) staticmethod

Create a DotBracket object from raw sequence and structure strings.

Parameters:

Name Type Description Default
sequence str

Nucleotide sequence.

required
structure str

Dot-bracket string of the same length.

required

Returns:

Type Description
DotBracket

New dot-bracket object.

Raises:

Type Description
ValueError

If sequence and structure lengths differ.

Source code in src/rnapolis/common.py
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
@staticmethod
def from_string(sequence: str, structure: str) -> "DotBracket":
    """Create a DotBracket object from raw sequence and structure strings.

    Args:
        sequence: Nucleotide sequence.
        structure: Dot-bracket string of the same length.

    Returns:
        New dot-bracket object.

    Raises:
        ValueError: If sequence and structure lengths differ.
    """
    if len(sequence) != len(structure):
        raise ValueError(
            "Sequence and structure lengths differ, {} vs {}",
            (len(sequence), len(structure)),
        )
    return DotBracket(sequence, structure)

without_pseudoknots()

Return a copy with pseudoknot brackets replaced by dots.

Returns:

Type Description
DotBracket

New dot-bracket object with pseudoknots removed.

Source code in src/rnapolis/common.py
1294
1295
1296
1297
1298
1299
1300
1301
def without_pseudoknots(self) -> "DotBracket":
    """Return a copy with pseudoknot brackets replaced by dots.

    Returns:
        New dot-bracket object with pseudoknots removed.
    """
    structure = re.sub(r"[\[\]\{\}\<\>A-Za-z]", ".", self.structure)
    return DotBracket(self.sequence, structure)

Entry dataclass

Bases: Sequence

Single BPSEQ entry (index, base, pairing partner).

Source code in src/rnapolis/common.py
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
@dataclass
class Entry(Sequence):
    """Single BPSEQ entry (index, base, pairing partner)."""

    index_: int
    sequence: str
    pair: int

    def __getitem__(self, item):
        """Support tuple-like access to (index, sequence, pair)."""
        if item == 0:
            return self.index_
        elif item == 1:
            return self.sequence
        elif item == 2:
            return self.pair
        raise IndexError()

    def __lt__(self, other):
        """Order entries by index."""
        return self.index_ < other.index_

    def __len__(self) -> int:
        """Always return length 3 (index, sequence, pair)."""
        return 3

    def __str__(self):
        """Format entry in classic BPSEQ style: 'i base j'."""
        return f"{self.index_} {self.sequence} {self.pair}"

__getitem__(item)

Support tuple-like access to (index, sequence, pair).

Source code in src/rnapolis/common.py
429
430
431
432
433
434
435
436
437
def __getitem__(self, item):
    """Support tuple-like access to (index, sequence, pair)."""
    if item == 0:
        return self.index_
    elif item == 1:
        return self.sequence
    elif item == 2:
        return self.pair
    raise IndexError()

__len__()

Always return length 3 (index, sequence, pair).

Source code in src/rnapolis/common.py
443
444
445
def __len__(self) -> int:
    """Always return length 3 (index, sequence, pair)."""
    return 3

__lt__(other)

Order entries by index.

Source code in src/rnapolis/common.py
439
440
441
def __lt__(self, other):
    """Order entries by index."""
    return self.index_ < other.index_

__str__()

Format entry in classic BPSEQ style: 'i base j'.

Source code in src/rnapolis/common.py
447
448
449
def __str__(self):
    """Format entry in classic BPSEQ style: 'i base j'."""
    return f"{self.index_} {self.sequence} {self.pair}"

GlycosidicBond

Bases: Enum

Orientation of the glycosidic bond.

Source code in src/rnapolis/common.py
62
63
64
65
66
class GlycosidicBond(Enum):
    """Orientation of the glycosidic bond."""

    anti = "anti"
    syn = "syn"

Hairpin dataclass

Hairpin loop represented by a single strand.

Source code in src/rnapolis/common.py
558
559
560
561
562
563
564
565
566
567
568
569
570
@dataclass
class Hairpin:
    """Hairpin loop represented by a single strand."""

    strand: Strand

    def __post_init__(self):
        """Cache a human-readable description string."""
        self.description = str(self)

    def __str__(self):
        """Return a readable representation of the hairpin."""
        return f"Hairpin {self.strand.first} {self.strand.last} {self.strand.sequence} {self.strand.structure}"

__post_init__()

Cache a human-readable description string.

Source code in src/rnapolis/common.py
564
565
566
def __post_init__(self):
    """Cache a human-readable description string."""
    self.description = str(self)

__str__()

Return a readable representation of the hairpin.

Source code in src/rnapolis/common.py
568
569
570
def __str__(self):
    """Return a readable representation of the hairpin."""
    return f"Hairpin {self.strand.first} {self.strand.last} {self.strand.sequence} {self.strand.structure}"

InterStemParameters dataclass

Geometric parameters describing relationships between two stems.

Source code in src/rnapolis/common.py
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
@dataclass(frozen=True, order=True)
class InterStemParameters:
    """Geometric parameters describing relationships between two stems."""

    stem1_idx: int
    stem2_idx: int
    type: Optional[str]  # Type of closest endpoint pair ('cs55', 'cs53', etc.)
    torsion: Optional[float]  # Torsion angle between stem segments (degrees)
    min_endpoint_distance: Optional[float]  # Minimum distance between stem endpoints
    torsion_angle_pdf: Optional[float]  # PDF value of the torsion angle
    min_endpoint_distance_pdf: Optional[float]  # PDF value of the min endpoint distance
    coaxial_probability: Optional[float]  # Probability of stems being coaxial (0-1)

Interaction dataclass

Base class for all interactions between two residues.

Source code in src/rnapolis/common.py
377
378
379
380
381
382
@dataclass(frozen=True, order=True)
class Interaction:
    """Base class for all interactions between two residues."""

    nt1: Residue
    nt2: Residue

LeontisWesthof

Bases: Enum

Leontis–Westhof base pair geometry classification.

Source code in src/rnapolis/common.py
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
@total_ordering
class LeontisWesthof(Enum):
    """Leontis–Westhof base pair geometry classification."""

    cWW = "cWW"
    cWH = "cWH"
    cWS = "cWS"
    cHW = "cHW"
    cHH = "cHH"
    cHS = "cHS"
    cSW = "cSW"
    cSH = "cSH"
    cSS = "cSS"
    tWW = "tWW"
    tWH = "tWH"
    tWS = "tWS"
    tHW = "tHW"
    tHH = "tHH"
    tHS = "tHS"
    tSW = "tSW"
    tSH = "tSH"
    tSS = "tSS"

    @property
    def reverse(self):
        """Return the Leontis–Westhof class with swapped edges."""
        return LeontisWesthof[f"{self.name[0]}{self.name[2]}{self.name[1]}"]

    def __lt__(self, other):
        """Compare Leontis–Westhof classes using tuple ordering of values."""
        return tuple(self.value) < tuple(other.value)

reverse property

Return the Leontis–Westhof class with swapped edges.

__lt__(other)

Compare Leontis–Westhof classes using tuple ordering of values.

Source code in src/rnapolis/common.py
97
98
99
def __lt__(self, other):
    """Compare Leontis–Westhof classes using tuple ordering of values."""
    return tuple(self.value) < tuple(other.value)

Loop dataclass

Multi-strand loop consisting of several contiguous strands.

Source code in src/rnapolis/common.py
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
@dataclass
class Loop:
    """Multi-strand loop consisting of several contiguous strands."""

    strands: List[Strand]

    def __post_init__(self):
        """Cache a human-readable description string."""
        self.description = str(self)

    def __str__(self):
        """Return a readable representation of the loop."""
        desc = " ".join(
            [
                "{} {} {} {}".format(
                    strand.first, strand.last, strand.sequence, strand.structure
                )
                for strand in self.strands
            ]
        )
        return f"Loop {desc}"

__post_init__()

Cache a human-readable description string.

Source code in src/rnapolis/common.py
579
580
581
def __post_init__(self):
    """Cache a human-readable description string."""
    self.description = str(self)

__str__()

Return a readable representation of the loop.

Source code in src/rnapolis/common.py
583
584
585
586
587
588
589
590
591
592
593
def __str__(self):
    """Return a readable representation of the loop."""
    desc = " ".join(
        [
            "{} {} {} {}".format(
                strand.first, strand.last, strand.sequence, strand.structure
            )
            for strand in self.strands
        ]
    )
    return f"Loop {desc}"

Molecule

Bases: Enum

Simple classification of molecule type.

Source code in src/rnapolis/common.py
20
21
22
23
24
25
class Molecule(Enum):
    """Simple classification of molecule type."""

    DNA = "DNA"
    RNA = "RNA"
    Other = "Other"

MultiStrandDotBracket dataclass

Bases: DotBracket

Dot-bracket representation for multiple strands concatenated together.

Source code in src/rnapolis/common.py
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
@dataclass
class MultiStrandDotBracket(DotBracket):
    """Dot-bracket representation for multiple strands concatenated together."""

    strands: List[Strand]

    @staticmethod
    def from_string(sequence: str, structure: str) -> "DotBracket":
        """Create MultiStrandDotBracket from a single sequence/structure.

        For compatibility with DotBracket, this creates a single strand
        covering the full sequence.

        Args:
            sequence: Nucleotide sequence.
            structure: Dot-bracket structure string.

        Returns:
            Multi-strand dot-bracket object.
        """
        # Provide compatibility with DotBracket.from_string
        strand = Strand(1, len(sequence), sequence, structure)
        return MultiStrandDotBracket(sequence, structure, [strand])

    @staticmethod
    def from_multiline_string(input: str) -> "DotBracket":
        """Parse multi-strand dot-bracket from a multi-line string.

        The format expects optional header lines starting with '>', followed
        by sequence and structure lines for each strand.

        Args:
            input: Full multi-line text.

        Returns:
            Parsed multi-strand representation.
        """
        strands = []
        first = 1

        for match in re.finditer(
            r"((>.*?\n)?([ACGTURYSWKMBDHVNacgturyswkmbdhvn.-]+)\n([.()\[\]{}<>A-Za-z]+))",
            input,
        ):
            sequence = match.group(3)
            structure = match.group(4)
            assert len(sequence) == len(structure)
            last = first + len(sequence) - 1
            strands.append(Strand(first, last, sequence, structure))
            first = last + 1

        return MultiStrandDotBracket(
            "".join(strand.sequence for strand in strands),
            "".join(strand.structure for strand in strands),
            strands,
        )

    @staticmethod
    def from_file(path: str) -> "DotBracket":
        """Read MultiStrandDotBracket from a file.

        Args:
            path: Path to the input file.

        Returns:
            Parsed multi-strand dot-bracket object.
        """
        with open(path) as f:
            return MultiStrandDotBracket.from_multiline_string(f.read())

from_file(path) staticmethod

Read MultiStrandDotBracket from a file.

Parameters:

Name Type Description Default
path str

Path to the input file.

required

Returns:

Type Description
DotBracket

Parsed multi-strand dot-bracket object.

Source code in src/rnapolis/common.py
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
@staticmethod
def from_file(path: str) -> "DotBracket":
    """Read MultiStrandDotBracket from a file.

    Args:
        path: Path to the input file.

    Returns:
        Parsed multi-strand dot-bracket object.
    """
    with open(path) as f:
        return MultiStrandDotBracket.from_multiline_string(f.read())

from_multiline_string(input) staticmethod

Parse multi-strand dot-bracket from a multi-line string.

The format expects optional header lines starting with '>', followed by sequence and structure lines for each strand.

Parameters:

Name Type Description Default
input str

Full multi-line text.

required

Returns:

Type Description
DotBracket

Parsed multi-strand representation.

Source code in src/rnapolis/common.py
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
@staticmethod
def from_multiline_string(input: str) -> "DotBracket":
    """Parse multi-strand dot-bracket from a multi-line string.

    The format expects optional header lines starting with '>', followed
    by sequence and structure lines for each strand.

    Args:
        input: Full multi-line text.

    Returns:
        Parsed multi-strand representation.
    """
    strands = []
    first = 1

    for match in re.finditer(
        r"((>.*?\n)?([ACGTURYSWKMBDHVNacgturyswkmbdhvn.-]+)\n([.()\[\]{}<>A-Za-z]+))",
        input,
    ):
        sequence = match.group(3)
        structure = match.group(4)
        assert len(sequence) == len(structure)
        last = first + len(sequence) - 1
        strands.append(Strand(first, last, sequence, structure))
        first = last + 1

    return MultiStrandDotBracket(
        "".join(strand.sequence for strand in strands),
        "".join(strand.structure for strand in strands),
        strands,
    )

from_string(sequence, structure) staticmethod

Create MultiStrandDotBracket from a single sequence/structure.

For compatibility with DotBracket, this creates a single strand covering the full sequence.

Parameters:

Name Type Description Default
sequence str

Nucleotide sequence.

required
structure str

Dot-bracket structure string.

required

Returns:

Type Description
DotBracket

Multi-strand dot-bracket object.

Source code in src/rnapolis/common.py
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
@staticmethod
def from_string(sequence: str, structure: str) -> "DotBracket":
    """Create MultiStrandDotBracket from a single sequence/structure.

    For compatibility with DotBracket, this creates a single strand
    covering the full sequence.

    Args:
        sequence: Nucleotide sequence.
        structure: Dot-bracket structure string.

    Returns:
        Multi-strand dot-bracket object.
    """
    # Provide compatibility with DotBracket.from_string
    strand = Strand(1, len(sequence), sequence, structure)
    return MultiStrandDotBracket(sequence, structure, [strand])

OtherInteraction dataclass

Bases: Interaction

Catch-all interaction type for non-standard contacts.

Source code in src/rnapolis/common.py
414
415
416
417
418
@dataclass(frozen=True, order=True)
class OtherInteraction(Interaction):
    """Catch-all interaction type for non-standard contacts."""

    pass

Residue dataclass

Unified residue identifier with both label and auth coordinates.

Source code in src/rnapolis/common.py
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
@dataclass(frozen=True)
@total_ordering
class Residue:
    """Unified residue identifier with both label and auth coordinates."""

    label: Optional[ResidueLabel]
    auth: Optional[ResidueAuth]

    def __lt__(self, other):
        """Compare residues by chain, number and insertion code."""
        return (self.chain or "", self.number, self.icode or " ") < (
            other.chain or "",
            other.number,
            other.icode or " ",
        )

    @property
    def chain(self) -> Optional[str]:
        """Return chain identifier from auth or label coordinates."""
        if self.auth is not None:
            return self.auth.chain
        if self.label is not None:
            return self.label.chain
        return None

    @property
    def number(self) -> Optional[int]:
        """Return residue number from auth or label coordinates."""
        if self.auth is not None:
            return self.auth.number
        if self.label is not None:
            return self.label.number
        return None

    @property
    def icode(self) -> Optional[str]:
        """Return insertion code or ``None`` if not set or blank."""
        if self.auth is not None:
            return self.auth.icode if self.auth.icode not in (" ", "?", ".") else None
        return None

    @property
    def name(self) -> Optional[str]:
        """Return residue name from auth or label coordinates."""
        if self.auth is not None:
            return self.auth.name
        if self.label is not None:
            return self.label.name
        return None

    @property
    def molecule_type(self) -> Molecule:
        """Classify residue as RNA, DNA or Other based on its name."""
        return classify_molecule(self.name or "")

    @property
    @cache
    def full_name(self) -> Optional[str]:
        """Return human-readable residue identifier (e.g. A.A/23^A)."""
        if self.auth is not None:
            if self.auth.chain is None or self.auth.chain.isspace():
                builder = f"{self.auth.name}"
            else:
                builder = f"{self.auth.chain}.{self.auth.name}"
            if len(self.auth.name) > 0 and self.auth.name[-1] in string.digits:
                builder += "/"
            builder += f"{self.auth.number}"
            if self.auth.icode:
                builder += f"^{self.auth.icode}"
            return builder
        elif self.label is not None:
            if self.label.chain is None or self.label.chain.isspace():
                builder = f"{self.label.name}"
            else:
                builder = f"{self.label.chain}.{self.label.name}"
            if len(self.label.name) > 0 and self.label.name[-1] in string.digits:
                builder += "/"
            builder += f"{self.label.number}"
            return builder
        return None

chain property

Return chain identifier from auth or label coordinates.

full_name cached property

Return human-readable residue identifier (e.g. A.A/23^A).

icode property

Return insertion code or None if not set or blank.

molecule_type property

Classify residue as RNA, DNA or Other based on its name.

name property

Return residue name from auth or label coordinates.

number property

Return residue number from auth or label coordinates.

__lt__(other)

Compare residues by chain, number and insertion code.

Source code in src/rnapolis/common.py
303
304
305
306
307
308
309
def __lt__(self, other):
    """Compare residues by chain, number and insertion code."""
    return (self.chain or "", self.number, self.icode or " ") < (
        other.chain or "",
        other.number,
        other.icode or " ",
    )

ResidueAuth dataclass

Auth-style residue identifier (auth chain/number/icode/name).

Source code in src/rnapolis/common.py
285
286
287
288
289
290
291
292
@dataclass(frozen=True, order=True)
class ResidueAuth:
    """Auth-style residue identifier (auth chain/number/icode/name)."""

    chain: Optional[str]
    number: int
    icode: Optional[str]
    name: str

ResidueLabel dataclass

Label-style residue identifier (label chain/number/name).

Source code in src/rnapolis/common.py
276
277
278
279
280
281
282
@dataclass(frozen=True, order=True)
class ResidueLabel:
    """Label-style residue identifier (label chain/number/name)."""

    chain: Optional[str]
    number: int
    name: str

Saenger

Bases: Enum

Saenger base pair classification.

Source code in src/rnapolis/common.py
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
class Saenger(Enum):
    """Saenger base pair classification."""

    I = "I"
    II = "II"
    III = "III"
    IV = "IV"
    V = "V"
    VI = "VI"
    VII = "VII"
    VIII = "VIII"
    IX = "IX"
    X = "X"
    XI = "XI"
    XII = "XII"
    XIII = "XIII"
    XIV = "XIV"
    XV = "XV"
    XVI = "XVI"
    XVII = "XVII"
    XVIII = "XVIII"
    XIX = "XIX"
    XX = "XX"
    XXI = "XXI"
    XXII = "XXII"
    XXIII = "XXIII"
    XXIV = "XXIV"
    XXV = "XXV"
    XXVI = "XXVI"
    XXVII = "XXVII"
    XXVIII = "XXVIII"

    @staticmethod
    def table() -> Dict[Tuple[str, str], str]:
        """Return mapping from (base pair, Leontis–Westhof) to Saenger class name."""
        return {
            ("AA", "tWW"): "I",
            ("AA", "tHH"): "II",
            ("GG", "tWW"): "III",
            ("GG", "tSS"): "IV",
            ("AA", "tWH"): "V",
            ("AA", "tHW"): "V",
            ("GG", "cWH"): "VI",
            ("GG", "cHW"): "VI",
            ("GG", "tWH"): "VII",
            ("GG", "tHW"): "VII",
            ("AG", "cWW"): "VIII",
            ("GA", "cWW"): "VIII",
            ("AG", "cHW"): "IX",
            ("GA", "cWH"): "IX",
            ("AG", "tWS"): "X",
            ("GA", "tSW"): "X",
            ("AG", "tHS"): "XI",
            ("GA", "tSH"): "XI",
            ("UU", "tWW"): "XII",
            ("TT", "tWW"): "XII",
            # XIII is UU/TT in tWW but donor-donor, so impossible
            # XIV and XV are both CC in tWW but donor-donor, so impossible
            ("UU", "cWW"): "XVI",
            ("TT", "cWW"): "XVI",
            ("CU", "tWW"): "XVII",
            ("UC", "tWW"): "XVII",
            ("CU", "cWW"): "XVIII",
            ("UC", "cWW"): "XVIII",
            ("CG", "cWW"): "XIX",
            ("GC", "cWW"): "XIX",
            ("AU", "cWW"): "XX",
            ("UA", "cWW"): "XX",
            ("AT", "cWW"): "XX",
            ("TA", "cWW"): "XX",
            ("AU", "tWW"): "XXI",
            ("UA", "tWW"): "XXI",
            ("AT", "tWW"): "XXI",
            ("TA", "tWW"): "XXI",
            ("CG", "tWW"): "XXII",
            ("GC", "tWW"): "XXII",
            ("AU", "cHW"): "XXIII",
            ("UA", "cWH"): "XXIII",
            ("AT", "cHW"): "XXIII",
            ("TA", "cWH"): "XXIII",
            ("AU", "tHW"): "XXIV",
            ("UA", "tWH"): "XXIV",
            ("AT", "tHW"): "XXIV",
            ("TA", "tWH"): "XXIV",
            ("AC", "tHW"): "XXV",
            ("CA", "tWH"): "XXV",
            ("AC", "tWW"): "XXVI",
            ("CA", "tWW"): "XXVI",
            ("GU", "tWW"): "XXVII",
            ("UG", "tWW"): "XXVII",
            ("GT", "tWW"): "XXVII",
            ("TG", "tWW"): "XXVII",
            ("GU", "cWW"): "XXVIII",
            ("UG", "cWW"): "XXVIII",
            ("GT", "cWW"): "XXVIII",
            ("TG", "cWW"): "XXVIII",
        }

    @classmethod
    def from_leontis_westhof(
        cls,
        residue_i_one_letter_name: str,
        residue_j_one_letter_name: str,
        lw: LeontisWesthof,
    ) -> Optional["Saenger"]:
        """Map a Leontis–Westhof class and base pair to a Saenger class.

        Args:
            residue_i_one_letter_name: One-letter code of the first base.
            residue_j_one_letter_name: One-letter code of the second base.
            lw: Leontis–Westhof classification.

        Returns:
            Matching Saenger class or ``None`` if not defined.
        """
        key = (f"{residue_i_one_letter_name}{residue_j_one_letter_name}", lw.value)
        if key in Saenger.table():
            return Saenger[Saenger.table()[key]]
        return None

    @property
    def is_canonical(self) -> bool:
        """Return True for canonical Watson–Crick or wobble pairs."""
        return self == Saenger.XIX or self == Saenger.XX or self == Saenger.XXVIII

is_canonical property

Return True for canonical Watson–Crick or wobble pairs.

from_leontis_westhof(residue_i_one_letter_name, residue_j_one_letter_name, lw) classmethod

Map a Leontis–Westhof class and base pair to a Saenger class.

Parameters:

Name Type Description Default
residue_i_one_letter_name str

One-letter code of the first base.

required
residue_j_one_letter_name str

One-letter code of the second base.

required
lw LeontisWesthof

Leontis–Westhof classification.

required

Returns:

Type Description
Optional[Saenger]

Matching Saenger class or None if not defined.

Source code in src/rnapolis/common.py
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
@classmethod
def from_leontis_westhof(
    cls,
    residue_i_one_letter_name: str,
    residue_j_one_letter_name: str,
    lw: LeontisWesthof,
) -> Optional["Saenger"]:
    """Map a Leontis–Westhof class and base pair to a Saenger class.

    Args:
        residue_i_one_letter_name: One-letter code of the first base.
        residue_j_one_letter_name: One-letter code of the second base.
        lw: Leontis–Westhof classification.

    Returns:
        Matching Saenger class or ``None`` if not defined.
    """
    key = (f"{residue_i_one_letter_name}{residue_j_one_letter_name}", lw.value)
    if key in Saenger.table():
        return Saenger[Saenger.table()[key]]
    return None

table() staticmethod

Return mapping from (base pair, Leontis–Westhof) to Saenger class name.

Source code in src/rnapolis/common.py
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
@staticmethod
def table() -> Dict[Tuple[str, str], str]:
    """Return mapping from (base pair, Leontis–Westhof) to Saenger class name."""
    return {
        ("AA", "tWW"): "I",
        ("AA", "tHH"): "II",
        ("GG", "tWW"): "III",
        ("GG", "tSS"): "IV",
        ("AA", "tWH"): "V",
        ("AA", "tHW"): "V",
        ("GG", "cWH"): "VI",
        ("GG", "cHW"): "VI",
        ("GG", "tWH"): "VII",
        ("GG", "tHW"): "VII",
        ("AG", "cWW"): "VIII",
        ("GA", "cWW"): "VIII",
        ("AG", "cHW"): "IX",
        ("GA", "cWH"): "IX",
        ("AG", "tWS"): "X",
        ("GA", "tSW"): "X",
        ("AG", "tHS"): "XI",
        ("GA", "tSH"): "XI",
        ("UU", "tWW"): "XII",
        ("TT", "tWW"): "XII",
        # XIII is UU/TT in tWW but donor-donor, so impossible
        # XIV and XV are both CC in tWW but donor-donor, so impossible
        ("UU", "cWW"): "XVI",
        ("TT", "cWW"): "XVI",
        ("CU", "tWW"): "XVII",
        ("UC", "tWW"): "XVII",
        ("CU", "cWW"): "XVIII",
        ("UC", "cWW"): "XVIII",
        ("CG", "cWW"): "XIX",
        ("GC", "cWW"): "XIX",
        ("AU", "cWW"): "XX",
        ("UA", "cWW"): "XX",
        ("AT", "cWW"): "XX",
        ("TA", "cWW"): "XX",
        ("AU", "tWW"): "XXI",
        ("UA", "tWW"): "XXI",
        ("AT", "tWW"): "XXI",
        ("TA", "tWW"): "XXI",
        ("CG", "tWW"): "XXII",
        ("GC", "tWW"): "XXII",
        ("AU", "cHW"): "XXIII",
        ("UA", "cWH"): "XXIII",
        ("AT", "cHW"): "XXIII",
        ("TA", "cWH"): "XXIII",
        ("AU", "tHW"): "XXIV",
        ("UA", "tWH"): "XXIV",
        ("AT", "tHW"): "XXIV",
        ("TA", "tWH"): "XXIV",
        ("AC", "tHW"): "XXV",
        ("CA", "tWH"): "XXV",
        ("AC", "tWW"): "XXVI",
        ("CA", "tWW"): "XXVI",
        ("GU", "tWW"): "XXVII",
        ("UG", "tWW"): "XXVII",
        ("GT", "tWW"): "XXVII",
        ("TG", "tWW"): "XXVII",
        ("GU", "cWW"): "XXVIII",
        ("UG", "cWW"): "XXVIII",
        ("GT", "cWW"): "XXVIII",
        ("TG", "cWW"): "XXVIII",
    }

SingleStrand dataclass

Single-stranded region (5', 3' or internal).

Source code in src/rnapolis/common.py
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
@dataclass
class SingleStrand:
    """Single-stranded region (5', 3' or internal)."""

    strand: Strand
    is5p: bool
    is3p: bool

    def __post_init__(self):
        """Cache a human-readable description string."""
        self.description = str(self)

    def __str__(self):
        """Return a readable label describing the single strand."""
        if self.is5p:
            return f"SingleStrand5p {self.strand.first} {self.strand.last} {self.strand.sequence} {self.strand.structure}"
        if self.is3p:
            return f"SingleStrand3p {self.strand.first} {self.strand.last} {self.strand.sequence} {self.strand.structure}"
        return f"SingleStrand {self.strand.first} {self.strand.last} {self.strand.sequence} {self.strand.structure}"

__post_init__()

Cache a human-readable description string.

Source code in src/rnapolis/common.py
502
503
504
def __post_init__(self):
    """Cache a human-readable description string."""
    self.description = str(self)

__str__()

Return a readable label describing the single strand.

Source code in src/rnapolis/common.py
506
507
508
509
510
511
512
def __str__(self):
    """Return a readable label describing the single strand."""
    if self.is5p:
        return f"SingleStrand5p {self.strand.first} {self.strand.last} {self.strand.sequence} {self.strand.structure}"
    if self.is3p:
        return f"SingleStrand3p {self.strand.first} {self.strand.last} {self.strand.sequence} {self.strand.structure}"
    return f"SingleStrand {self.strand.first} {self.strand.last} {self.strand.sequence} {self.strand.structure}"

Stacking dataclass

Bases: Interaction

Base stacking interaction.

Source code in src/rnapolis/common.py
393
394
395
396
397
@dataclass(frozen=True, order=True)
class Stacking(Interaction):
    """Base stacking interaction."""

    topology: Optional[StackingTopology]

StackingTopology

Bases: Enum

Relative orientation of stacked bases.

Source code in src/rnapolis/common.py
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
class StackingTopology(Enum):
    """Relative orientation of stacked bases."""

    upward = "upward"
    downward = "downward"
    inward = "inward"
    outward = "outward"

    @property
    def reverse(self):
        """Return stacking topology with reversed direction."""
        if self == StackingTopology.upward:
            return StackingTopology.downward
        elif self == StackingTopology.downward:
            return StackingTopology.upward
        return self

reverse property

Return stacking topology with reversed direction.

Stem dataclass

Paired stem defined by two complementary strands.

Source code in src/rnapolis/common.py
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
@dataclass
class Stem:
    """Paired stem defined by two complementary strands."""

    strand5p: Strand
    strand3p: Strand

    @staticmethod
    def from_bpseq_entries(
        strand5p_entries: List[Entry], all_entries: List[Entry], dotbracket: str
    ) -> "Stem":
        """Build a Stem from 5' strand entries and full BPSEQ list.

        Args:
            strand5p_entries: Entries of the 5' side of the stem.
            all_entries: All BPSEQ entries for the molecule.
            dotbracket: Full dot-bracket structure string.

        Returns:
            New stem object with 5' and 3' strands.
        """

        paired = set([entry[2] for entry in strand5p_entries])
        strand3p_entries = list(filter(lambda entry: entry[0] in paired, all_entries))
        return Stem(
            Strand.from_bpseq_entries(strand5p_entries, dotbracket),
            Strand.from_bpseq_entries(strand3p_entries, dotbracket),
        )

    def __post_init__(self):
        """Cache a human-readable description string."""
        self.description = str(self)

    def __str__(self):
        """Return a readable representation of the stem."""
        return (
            f"Stem {self.strand5p.first} {self.strand5p.last} "
            f"{self.strand5p.sequence} {self.strand5p.structure} "
            f"{self.strand3p.first} {self.strand3p.last} "
            f"{self.strand3p.sequence} {self.strand3p.structure}"
        )

__post_init__()

Cache a human-readable description string.

Source code in src/rnapolis/common.py
544
545
546
def __post_init__(self):
    """Cache a human-readable description string."""
    self.description = str(self)

__str__()

Return a readable representation of the stem.

Source code in src/rnapolis/common.py
548
549
550
551
552
553
554
555
def __str__(self):
    """Return a readable representation of the stem."""
    return (
        f"Stem {self.strand5p.first} {self.strand5p.last} "
        f"{self.strand5p.sequence} {self.strand5p.structure} "
        f"{self.strand3p.first} {self.strand3p.last} "
        f"{self.strand3p.sequence} {self.strand3p.structure}"
    )

from_bpseq_entries(strand5p_entries, all_entries, dotbracket) staticmethod

Build a Stem from 5' strand entries and full BPSEQ list.

Parameters:

Name Type Description Default
strand5p_entries List[Entry]

Entries of the 5' side of the stem.

required
all_entries List[Entry]

All BPSEQ entries for the molecule.

required
dotbracket str

Full dot-bracket structure string.

required

Returns:

Type Description
Stem

New stem object with 5' and 3' strands.

Source code in src/rnapolis/common.py
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
@staticmethod
def from_bpseq_entries(
    strand5p_entries: List[Entry], all_entries: List[Entry], dotbracket: str
) -> "Stem":
    """Build a Stem from 5' strand entries and full BPSEQ list.

    Args:
        strand5p_entries: Entries of the 5' side of the stem.
        all_entries: All BPSEQ entries for the molecule.
        dotbracket: Full dot-bracket structure string.

    Returns:
        New stem object with 5' and 3' strands.
    """

    paired = set([entry[2] for entry in strand5p_entries])
    strand3p_entries = list(filter(lambda entry: entry[0] in paired, all_entries))
    return Stem(
        Strand.from_bpseq_entries(strand5p_entries, dotbracket),
        Strand.from_bpseq_entries(strand3p_entries, dotbracket),
    )

Strand dataclass

Continuous strand segment with sequence and dot-bracket structure.

Source code in src/rnapolis/common.py
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
@dataclass(frozen=True)
class Strand:
    """Continuous strand segment with sequence and dot-bracket structure."""

    first: int
    last: int
    sequence: str
    structure: str

    @staticmethod
    def from_bpseq_entries(
        entries: List[Entry], dotbracket: str, reverse: bool = False
    ) -> "Strand":
        """Build a Strand from a list of BPSEQ entries.

        Args:
            entries: Consecutive BPSEQ entries forming the strand.
            dotbracket: Full dot-bracket structure string.
            reverse: If True, reverse 5'–3' direction.

        Returns:
            New strand object covering the selected region.
        """

        first = entries[0].index_
        last = first + len(entries) - 1
        if reverse:
            first, last = last, first
        sequence = "".join(
            [
                entry.sequence
                for entry in (entries if not reverse else reversed(entries))
            ]
        )
        structure = dotbracket[first - 1 : last]
        return Strand(first, last, sequence, structure)

    def __str__(self):
        """Return simple text representation of the strand."""
        return f"{self.first}-{self.sequence}-{self.last}"

__str__()

Return simple text representation of the strand.

Source code in src/rnapolis/common.py
489
490
491
def __str__(self):
    """Return simple text representation of the strand."""
    return f"{self.first}-{self.sequence}-{self.last}"

from_bpseq_entries(entries, dotbracket, reverse=False) staticmethod

Build a Strand from a list of BPSEQ entries.

Parameters:

Name Type Description Default
entries List[Entry]

Consecutive BPSEQ entries forming the strand.

required
dotbracket str

Full dot-bracket structure string.

required
reverse bool

If True, reverse 5'–3' direction.

False

Returns:

Type Description
Strand

New strand object covering the selected region.

Source code in src/rnapolis/common.py
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
@staticmethod
def from_bpseq_entries(
    entries: List[Entry], dotbracket: str, reverse: bool = False
) -> "Strand":
    """Build a Strand from a list of BPSEQ entries.

    Args:
        entries: Consecutive BPSEQ entries forming the strand.
        dotbracket: Full dot-bracket structure string.
        reverse: If True, reverse 5'–3' direction.

    Returns:
        New strand object covering the selected region.
    """

    first = entries[0].index_
    last = first + len(entries) - 1
    if reverse:
        first, last = last, first
    sequence = "".join(
        [
            entry.sequence
            for entry in (entries if not reverse else reversed(entries))
        ]
    )
    structure = dotbracket[first - 1 : last]
    return Strand(first, last, sequence, structure)

Structure2D dataclass

Secondary structure representation plus derived structural elements.

This object collects interactions, BPSEQ, dot-bracket notation, stems, loops and optional inter-stem parameters.

Source code in src/rnapolis/common.py
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
@dataclass
class Structure2D:
    """Secondary structure representation plus derived structural elements.

    This object collects interactions, BPSEQ, dot-bracket notation,
    stems, loops and optional inter-stem parameters.
    """

    base_pairs: List[BasePair]
    stackings: List[Stacking]
    base_ribose_interactions: List[BaseRibose]
    base_phosphate_interactions: List[BasePhosphate]
    other_interactions: List[OtherInteraction]
    bpseq: BpSeq
    bpseq_index: Dict[int, Residue]
    dot_bracket: MultiStrandDotBracket
    extended_dot_bracket: str
    stems: List[Stem]
    single_strands: List[SingleStrand]
    hairpins: List[Hairpin]
    loops: List[Loop]
    pseudoknot_stems: List[Stem]
    inter_stem_parameters: List[InterStemParameters]

classify_molecule(name, atom_names=None)

Classify a residue as RNA, DNA or Other.

First checks the residue name against canonical RNA/DNA name sets. If the name is inconclusive and atom_names is provided, falls back to atom-based heuristics (O2' presence for RNA, sugar atoms for DNA).

Parameters:

Name Type Description Default
name str

Residue name (will be upper-cased internally).

required
atom_names Optional[frozenset]

Optional set of atom names present in the residue.

None

Returns:

Type Description
Molecule

Molecule classification.

Source code in src/rnapolis/common.py
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
def classify_molecule(name: str, atom_names: Optional[frozenset] = None) -> Molecule:
    """Classify a residue as RNA, DNA or Other.

    First checks the residue name against canonical RNA/DNA name sets.
    If the name is inconclusive and ``atom_names`` is provided, falls back
    to atom-based heuristics (O2' presence for RNA, sugar atoms for DNA).

    Args:
        name: Residue name (will be upper-cased internally).
        atom_names: Optional set of atom names present in the residue.

    Returns:
        Molecule classification.
    """
    upper = name.upper()
    if upper in RNA_NAMES:
        return Molecule.RNA
    if upper in DNA_NAMES:
        return Molecule.DNA

    if atom_names is not None:
        if "O2'" in atom_names:
            return Molecule.RNA
        if len(atom_names & SUGAR_ATOMS) >= 4:
            return Molecule.DNA

    return Molecule.Other