RNApolis 0.4.7__py3-none-any.whl → 0.4.8__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- {RNApolis-0.4.7.dist-info → RNApolis-0.4.8.dist-info}/METADATA +1 -1
- {RNApolis-0.4.7.dist-info → RNApolis-0.4.8.dist-info}/RECORD +7 -7
- rnapolis/common.py +8 -3
- {RNApolis-0.4.7.dist-info → RNApolis-0.4.8.dist-info}/LICENSE +0 -0
- {RNApolis-0.4.7.dist-info → RNApolis-0.4.8.dist-info}/WHEEL +0 -0
- {RNApolis-0.4.7.dist-info → RNApolis-0.4.8.dist-info}/entry_points.txt +0 -0
- {RNApolis-0.4.7.dist-info → RNApolis-0.4.8.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
rnapolis/annotator.py,sha256=7U3f0gchKdIGc6FwJx0UAc_95HJI5SgECj-b7-1yBhc,22086
|
2
2
|
rnapolis/clashfinder.py,sha256=i95kp0o6OWNqmJDBr-PbsZd7RY2iJtBDr7QqolJSuAQ,8513
|
3
|
-
rnapolis/common.py,sha256=
|
3
|
+
rnapolis/common.py,sha256=7KSWZzqR7ntpaS6VRDYgpP2pC1dnBttOzYB06hQzWEI,30499
|
4
4
|
rnapolis/metareader.py,sha256=I1-cXc2YNBPwa3zihAnMTjEsAo79tEKzSmWu5yvN1Pk,2071
|
5
5
|
rnapolis/molecule_filter.py,sha256=hB6-nXgjmw7FAsQ3bj0cZ2FvuW2I1PXunEfcdwEUB1o,7389
|
6
6
|
rnapolis/motif_extractor.py,sha256=duHvpi9Ulcny9K60E6VBpz5RpJZw-KdTB4_Ph0iP478,774
|
@@ -9,9 +9,9 @@ rnapolis/rfam_folder.py,sha256=SjiiyML_T1__saruFwSMJEoQ7Y55GIU8ktS8ZUn5-fw,11111
|
|
9
9
|
rnapolis/tertiary.py,sha256=6t9ZB4w33-5n_M3sns1RoFXCOTgVAgGH4WDNG5OG9Kg,23426
|
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.8.dist-info/LICENSE,sha256=ZGRu12MzCgbYA-Lt8MyBlmjvPZh7xfiD5u5wBx0enq4,1066
|
13
|
+
RNApolis-0.4.8.dist-info/METADATA,sha256=FZsizaaGYKRz7ndlAySWt8mPfpjjHUoP-OzXaO3LBv8,54322
|
14
|
+
RNApolis-0.4.8.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
15
|
+
RNApolis-0.4.8.dist-info/entry_points.txt,sha256=foN2Pn5e-OzEz0fFmNoX6PnFSZFQntOlY8LbognP5F0,308
|
16
|
+
RNApolis-0.4.8.dist-info/top_level.txt,sha256=LcO18koxZcWoJ21KDRRRo_tyIbmXL5z61dPitZpy8yc,9
|
17
|
+
RNApolis-0.4.8.dist-info/RECORD,,
|
rnapolis/common.py
CHANGED
@@ -704,12 +704,17 @@ class BpSeq:
|
|
704
704
|
|
705
705
|
@cached_property
|
706
706
|
def dot_bracket(self):
|
707
|
-
pulp.
|
708
|
-
|
707
|
+
if pulp.HiGHS_CMD().available():
|
708
|
+
solver = pulp.HiGHS_CMD() # much faster than default
|
709
|
+
else:
|
710
|
+
solver = pulp.LpSolverDefault
|
711
|
+
if solver is not None:
|
712
|
+
solver.msg = False
|
713
|
+
return self.convert_to_dot_bracket(solver)
|
709
714
|
|
710
715
|
def convert_to_dot_bracket(self, solver: pulp.LpSolver):
|
711
716
|
# if PuLP solvers are not installed, use FCFS
|
712
|
-
if
|
717
|
+
if solver is None:
|
713
718
|
return self.fcfs()
|
714
719
|
|
715
720
|
# build conflict graph
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|