RNApolis 0.3.11__py3-none-any.whl → 0.3.12__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of RNApolis might be problematic. Click here for more details.
- {RNApolis-0.3.11.dist-info → RNApolis-0.3.12.dist-info}/METADATA +1 -1
- {RNApolis-0.3.11.dist-info → RNApolis-0.3.12.dist-info}/RECORD +8 -8
- rnapolis/common.py +2 -1
- rnapolis/parser.py +0 -1
- {RNApolis-0.3.11.dist-info → RNApolis-0.3.12.dist-info}/LICENSE +0 -0
- {RNApolis-0.3.11.dist-info → RNApolis-0.3.12.dist-info}/WHEEL +0 -0
- {RNApolis-0.3.11.dist-info → RNApolis-0.3.12.dist-info}/entry_points.txt +0 -0
- {RNApolis-0.3.11.dist-info → RNApolis-0.3.12.dist-info}/top_level.txt +0 -0
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
rnapolis/annotator.py,sha256=bcyqmUSSRyl0ejA3548K4czSElBMX3EpCKAfJ2tYjsw,21476
|
|
2
2
|
rnapolis/clashfinder.py,sha256=jD3s_UovygWi01NUbQNeAeRRFkARTSRraLXUV43UbAA,8514
|
|
3
|
-
rnapolis/common.py,sha256=
|
|
3
|
+
rnapolis/common.py,sha256=QdmAGF8DvG1EHpefumU27LceGm7l9obgWLhL4FELGT4,27381
|
|
4
4
|
rnapolis/metareader.py,sha256=4qtMKRvww2sUStLeV8WVrLEt-ScydHUv4Gxx96tnf-M,1683
|
|
5
5
|
rnapolis/molecule_filter.py,sha256=NhjuqdCRnXgPefWZPeTq77tifmnAzamQtA0ODqPPG9k,6918
|
|
6
6
|
rnapolis/motif_extractor.py,sha256=duHvpi9Ulcny9K60E6VBpz5RpJZw-KdTB4_Ph0iP478,774
|
|
7
|
-
rnapolis/parser.py,sha256=
|
|
7
|
+
rnapolis/parser.py,sha256=Cmjt7p8UkiSNhSQDjc6I7BRqtuIIHs23Fp-Glb8Zikw,12216
|
|
8
8
|
rnapolis/rfam_folder.py,sha256=3rgXEJR16uPFy_BOo8qkdClOAOQDVOkidnLE-yoRbeI,11112
|
|
9
9
|
rnapolis/tertiary.py,sha256=iWMPD9c21rjMPpEdBd7mPCQgds65IbOr4_Fy06s0NoU,18957
|
|
10
10
|
rnapolis/transformer.py,sha256=V9nOQvdq4-p7yUWo0vQg0CDQMpmyxz9t4TMSRVEKHnw,1817
|
|
11
11
|
rnapolis/util.py,sha256=IdquFO3PV1_KDqodjupzm0Rqvgy0CeSzxGHaGEHYXVU,543
|
|
12
|
-
RNApolis-0.3.
|
|
13
|
-
RNApolis-0.3.
|
|
14
|
-
RNApolis-0.3.
|
|
15
|
-
RNApolis-0.3.
|
|
16
|
-
RNApolis-0.3.
|
|
17
|
-
RNApolis-0.3.
|
|
12
|
+
RNApolis-0.3.12.dist-info/LICENSE,sha256=ZGRu12MzCgbYA-Lt8MyBlmjvPZh7xfiD5u5wBx0enq4,1066
|
|
13
|
+
RNApolis-0.3.12.dist-info/METADATA,sha256=PGjy4PTp1C5K1afBs6ZjeWz4pLJ5iFaiZfUSdgwusDk,54301
|
|
14
|
+
RNApolis-0.3.12.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
15
|
+
RNApolis-0.3.12.dist-info/entry_points.txt,sha256=foN2Pn5e-OzEz0fFmNoX6PnFSZFQntOlY8LbognP5F0,308
|
|
16
|
+
RNApolis-0.3.12.dist-info/top_level.txt,sha256=LcO18koxZcWoJ21KDRRRo_tyIbmXL5z61dPitZpy8yc,9
|
|
17
|
+
RNApolis-0.3.12.dist-info/RECORD,,
|
rnapolis/common.py
CHANGED
|
@@ -907,7 +907,8 @@ class MultiStrandDotBracket(DotBracket):
|
|
|
907
907
|
first = 1
|
|
908
908
|
|
|
909
909
|
for match in re.finditer(
|
|
910
|
-
r"((>.*?\n)?([
|
|
910
|
+
r"((>.*?\n)?([ACGTURYSWKMBDHVNacgturyswkmbdhvn.-]+)\n([.()\[\]{}<>A-Za-z]+))",
|
|
911
|
+
input,
|
|
911
912
|
):
|
|
912
913
|
sequence = match.group(3)
|
|
913
914
|
structure = match.group(4)
|
rnapolis/parser.py
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|