RNApolis 0.4.0__py3-none-any.whl → 0.4.1__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- {RNApolis-0.4.0.dist-info → RNApolis-0.4.1.dist-info}/METADATA +1 -1
- {RNApolis-0.4.0.dist-info → RNApolis-0.4.1.dist-info}/RECORD +7 -7
- rnapolis/tertiary.py +14 -1
- {RNApolis-0.4.0.dist-info → RNApolis-0.4.1.dist-info}/LICENSE +0 -0
- {RNApolis-0.4.0.dist-info → RNApolis-0.4.1.dist-info}/WHEEL +0 -0
- {RNApolis-0.4.0.dist-info → RNApolis-0.4.1.dist-info}/entry_points.txt +0 -0
- {RNApolis-0.4.0.dist-info → RNApolis-0.4.1.dist-info}/top_level.txt +0 -0
@@ -6,12 +6,12 @@ rnapolis/molecule_filter.py,sha256=hB6-nXgjmw7FAsQ3bj0cZ2FvuW2I1PXunEfcdwEUB1o,7
|
|
6
6
|
rnapolis/motif_extractor.py,sha256=duHvpi9Ulcny9K60E6VBpz5RpJZw-KdTB4_Ph0iP478,774
|
7
7
|
rnapolis/parser.py,sha256=wCA9rXqt51iLECgeBqOShFpuT8JwanNkHYD5uXYvLzU,13988
|
8
8
|
rnapolis/rfam_folder.py,sha256=SjiiyML_T1__saruFwSMJEoQ7Y55GIU8ktS8ZUn5-fw,11111
|
9
|
-
rnapolis/tertiary.py,sha256=
|
9
|
+
rnapolis/tertiary.py,sha256=qk1te8GPDuvQsnm4rTiw96VDYyNoO5x4IPf98zDzxPw,20824
|
10
10
|
rnapolis/transformer.py,sha256=V9nOQvdq4-p7yUWo0vQg0CDQMpmyxz9t4TMSRVEKHnw,1817
|
11
11
|
rnapolis/util.py,sha256=IdquFO3PV1_KDqodjupzm0Rqvgy0CeSzxGHaGEHYXVU,543
|
12
|
-
RNApolis-0.4.
|
13
|
-
RNApolis-0.4.
|
14
|
-
RNApolis-0.4.
|
15
|
-
RNApolis-0.4.
|
16
|
-
RNApolis-0.4.
|
17
|
-
RNApolis-0.4.
|
12
|
+
RNApolis-0.4.1.dist-info/LICENSE,sha256=ZGRu12MzCgbYA-Lt8MyBlmjvPZh7xfiD5u5wBx0enq4,1066
|
13
|
+
RNApolis-0.4.1.dist-info/METADATA,sha256=EayMQbE4Y5raff-7pFMmeh4EB81JaLEEMrbvEA4mbAk,54322
|
14
|
+
RNApolis-0.4.1.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
|
15
|
+
RNApolis-0.4.1.dist-info/entry_points.txt,sha256=foN2Pn5e-OzEz0fFmNoX6PnFSZFQntOlY8LbognP5F0,308
|
16
|
+
RNApolis-0.4.1.dist-info/top_level.txt,sha256=LcO18koxZcWoJ21KDRRRo_tyIbmXL5z61dPitZpy8yc,9
|
17
|
+
RNApolis-0.4.1.dist-info/RECORD,,
|
rnapolis/tertiary.py
CHANGED
@@ -548,7 +548,20 @@ class Mapping2D3D:
|
|
548
548
|
result: Dict[int, List] = {}
|
549
549
|
residue_map: Dict[Residue3D, int] = {}
|
550
550
|
i = 1
|
551
|
-
|
551
|
+
|
552
|
+
for j, residue in enumerate(self.structure3d.residues):
|
553
|
+
if self.find_gaps and j > 0:
|
554
|
+
previous = self.structure3d.residues[j - 1]
|
555
|
+
if (
|
556
|
+
previous.is_nucleotide
|
557
|
+
and residue.is_nucleotide
|
558
|
+
and previous.label
|
559
|
+
and residue.label
|
560
|
+
and previous.label.chain == residue.label.chain
|
561
|
+
):
|
562
|
+
for k in range(residue.label.number - previous.label.number - 1):
|
563
|
+
result[i] = [i, "?", 0]
|
564
|
+
i += 1
|
552
565
|
if residue.is_nucleotide:
|
553
566
|
result[i] = [i, residue.one_letter_name, 0]
|
554
567
|
residue_map[residue] = i
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|