RNApolis 0.3.17__tar.gz → 0.3.18__tar.gz
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.
- {rnapolis-0.3.17/src/RNApolis.egg-info → rnapolis-0.3.18}/PKG-INFO +2 -1
- {rnapolis-0.3.17 → rnapolis-0.3.18}/setup.py +2 -1
- {rnapolis-0.3.17 → rnapolis-0.3.18/src/RNApolis.egg-info}/PKG-INFO +2 -1
- {rnapolis-0.3.17 → rnapolis-0.3.18}/src/RNApolis.egg-info/requires.txt +1 -0
- {rnapolis-0.3.17 → rnapolis-0.3.18}/src/rnapolis/annotator.py +3 -4
- {rnapolis-0.3.17 → rnapolis-0.3.18}/src/rnapolis/clashfinder.py +1 -2
- {rnapolis-0.3.17 → rnapolis-0.3.18}/src/rnapolis/common.py +0 -1
- {rnapolis-0.3.17 → rnapolis-0.3.18}/src/rnapolis/metareader.py +0 -1
- {rnapolis-0.3.17 → rnapolis-0.3.18}/src/rnapolis/molecule_filter.py +16 -4
- {rnapolis-0.3.17 → rnapolis-0.3.18}/src/rnapolis/parser.py +0 -1
- {rnapolis-0.3.17 → rnapolis-0.3.18}/src/rnapolis/rfam_folder.py +0 -1
- {rnapolis-0.3.17 → rnapolis-0.3.18}/src/rnapolis/tertiary.py +0 -1
- {rnapolis-0.3.17 → rnapolis-0.3.18}/LICENSE +0 -0
- {rnapolis-0.3.17 → rnapolis-0.3.18}/README.md +0 -0
- {rnapolis-0.3.17 → rnapolis-0.3.18}/pyproject.toml +0 -0
- {rnapolis-0.3.17 → rnapolis-0.3.18}/setup.cfg +0 -0
- {rnapolis-0.3.17 → rnapolis-0.3.18}/src/RNApolis.egg-info/SOURCES.txt +0 -0
- {rnapolis-0.3.17 → rnapolis-0.3.18}/src/RNApolis.egg-info/dependency_links.txt +0 -0
- {rnapolis-0.3.17 → rnapolis-0.3.18}/src/RNApolis.egg-info/entry_points.txt +0 -0
- {rnapolis-0.3.17 → rnapolis-0.3.18}/src/RNApolis.egg-info/top_level.txt +0 -0
- {rnapolis-0.3.17 → rnapolis-0.3.18}/src/rnapolis/motif_extractor.py +0 -0
- {rnapolis-0.3.17 → rnapolis-0.3.18}/src/rnapolis/transformer.py +0 -0
- {rnapolis-0.3.17 → rnapolis-0.3.18}/src/rnapolis/util.py +0 -0
- {rnapolis-0.3.17 → rnapolis-0.3.18}/tests/test_annotator.py +0 -0
- {rnapolis-0.3.17 → rnapolis-0.3.18}/tests/test_bugfixes.py +0 -0
- {rnapolis-0.3.17 → rnapolis-0.3.18}/tests/test_common.py +0 -0
- {rnapolis-0.3.17 → rnapolis-0.3.18}/tests/test_metareader.py +0 -0
- {rnapolis-0.3.17 → rnapolis-0.3.18}/tests/test_parser.py +0 -0
- {rnapolis-0.3.17 → rnapolis-0.3.18}/tests/test_quadruplexes.py +0 -0
- {rnapolis-0.3.17 → rnapolis-0.3.18}/tests/test_rfam_folder.py +0 -0
- {rnapolis-0.3.17 → rnapolis-0.3.18}/tests/test_tertiary.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: RNApolis
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.18
|
4
4
|
Summary: A Python library containing RNA-related bioinformatics functions and classes
|
5
5
|
Home-page: https://github.com/tzok/rnapolis-py
|
6
6
|
Author: Tomasz Zok
|
@@ -21,6 +21,7 @@ Requires-Dist: mmcif
|
|
21
21
|
Requires-Dist: numpy
|
22
22
|
Requires-Dist: ordered-set
|
23
23
|
Requires-Dist: orjson
|
24
|
+
Requires-Dist: pandas
|
24
25
|
Requires-Dist: pulp
|
25
26
|
Requires-Dist: requests
|
26
27
|
Requires-Dist: scipy
|
@@ -5,7 +5,7 @@ with open("README.md") as f:
|
|
5
5
|
|
6
6
|
setup(
|
7
7
|
name="RNApolis",
|
8
|
-
version="0.3.
|
8
|
+
version="0.3.18",
|
9
9
|
packages=["rnapolis"],
|
10
10
|
package_dir={"": "src"},
|
11
11
|
author="Tomasz Zok",
|
@@ -42,6 +42,7 @@ setup(
|
|
42
42
|
"numpy",
|
43
43
|
"ordered-set",
|
44
44
|
"orjson",
|
45
|
+
"pandas",
|
45
46
|
"pulp",
|
46
47
|
"requests",
|
47
48
|
"scipy",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: RNApolis
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.18
|
4
4
|
Summary: A Python library containing RNA-related bioinformatics functions and classes
|
5
5
|
Home-page: https://github.com/tzok/rnapolis-py
|
6
6
|
Author: Tomasz Zok
|
@@ -21,6 +21,7 @@ Requires-Dist: mmcif
|
|
21
21
|
Requires-Dist: numpy
|
22
22
|
Requires-Dist: ordered-set
|
23
23
|
Requires-Dist: orjson
|
24
|
+
Requires-Dist: pandas
|
24
25
|
Requires-Dist: pulp
|
25
26
|
Requires-Dist: requests
|
26
27
|
Requires-Dist: scipy
|
@@ -10,8 +10,6 @@ from typing import Dict, List, Optional, Set, Tuple
|
|
10
10
|
import numpy
|
11
11
|
import numpy.typing
|
12
12
|
from ordered_set import OrderedSet
|
13
|
-
from scipy.spatial import KDTree
|
14
|
-
|
15
13
|
from rnapolis.common import (
|
16
14
|
BR,
|
17
15
|
BaseInteractions,
|
@@ -43,6 +41,7 @@ from rnapolis.tertiary import (
|
|
43
41
|
torsion_angle,
|
44
42
|
)
|
45
43
|
from rnapolis.util import handle_input_file
|
44
|
+
from scipy.spatial import KDTree
|
46
45
|
|
47
46
|
HYDROGEN_BOND_MAX_DISTANCE = 4.0
|
48
47
|
HYDROGEN_BOND_ANGLE_RANGE = (50.0, 130.0) # 90 degrees is ideal, so allow +- 40 degrees
|
@@ -149,7 +148,7 @@ def detect_bph_br_classification(
|
|
149
148
|
|
150
149
|
|
151
150
|
def merge_and_clean_bph_br(
|
152
|
-
pairs: List[Tuple[Residue3D, Residue3D, int]]
|
151
|
+
pairs: List[Tuple[Residue3D, Residue3D, int]],
|
153
152
|
) -> Dict[Tuple[Residue3D, Residue3D], OrderedSet[int]]:
|
154
153
|
bph_br_map: Dict[Tuple[Residue3D, Residue3D], OrderedSet[int]] = defaultdict(
|
155
154
|
OrderedSet
|
@@ -588,7 +587,7 @@ def main():
|
|
588
587
|
"-a",
|
589
588
|
"--all-dot-brackets",
|
590
589
|
action="store_true",
|
591
|
-
help="
|
590
|
+
help="(optional) print all dot-brackets, not only optimal one (exclusive with -e/--extended)",
|
592
591
|
)
|
593
592
|
parser.add_argument("-b", "--bpseq", help="(optional) path to output BPSEQ file")
|
594
593
|
parser.add_argument("-c", "--csv", help="(optional) path to output CSV file")
|
@@ -8,11 +8,10 @@ from functools import cached_property
|
|
8
8
|
from typing import List, Optional
|
9
9
|
|
10
10
|
import numpy as np
|
11
|
-
from scipy.spatial import KDTree
|
12
|
-
|
13
11
|
from rnapolis.metareader import read_metadata
|
14
12
|
from rnapolis.parser import read_3d_structure
|
15
13
|
from rnapolis.tertiary import Atom, Residue3D
|
14
|
+
from scipy.spatial import KDTree
|
16
15
|
|
17
16
|
CARBON_RADIUS = 0.6
|
18
17
|
NITROGEN_RADIUS = 0.54
|
@@ -8,7 +8,6 @@ from collections.abc import Sequence
|
|
8
8
|
from dataclasses import dataclass
|
9
9
|
from enum import Enum
|
10
10
|
from functools import cache, cached_property, total_ordering
|
11
|
-
from itertools import permutations
|
12
11
|
from typing import Dict, List, Optional, Tuple
|
13
12
|
|
14
13
|
import graphviz
|
@@ -5,7 +5,6 @@ from typing import List, Set, Tuple
|
|
5
5
|
|
6
6
|
from mmcif.io.IoAdapterPy import IoAdapterPy
|
7
7
|
from mmcif.io.PdbxReader import DataCategory, DataContainer
|
8
|
-
|
9
8
|
from rnapolis.util import handle_input_file
|
10
9
|
|
11
10
|
# Source: https://mmcif.wwpdb.org/dictionaries/mmcif_pdbx_v50.dic/Items/_entity_poly.type.html
|
@@ -158,11 +157,17 @@ def main():
|
|
158
157
|
parser = argparse.ArgumentParser()
|
159
158
|
parser.add_argument(
|
160
159
|
"--type",
|
161
|
-
help="a type of molecule to select (default: polyribonucleotide)",
|
160
|
+
help="a type of molecule to select, you can provide this argument multiple times (default: polyribonucleotide)",
|
162
161
|
action="append",
|
163
162
|
default=["polyribonucleotide"],
|
164
163
|
choices=ENTITY_POLY_TYPES,
|
165
164
|
)
|
165
|
+
parser.add_argument(
|
166
|
+
"--chain",
|
167
|
+
help="a chain ID (label_asym_id) to select, you can provide this argument multiple times (if provided, it overrides the --type argument)",
|
168
|
+
action="append",
|
169
|
+
default=[],
|
170
|
+
)
|
166
171
|
parser.add_argument("path", help="path to a PDBx/mmCIF file")
|
167
172
|
args = parser.parse_args()
|
168
173
|
|
@@ -171,8 +176,15 @@ def main():
|
|
171
176
|
data = adapter.readFile(file.name)
|
172
177
|
output = DataContainer("rnapolis")
|
173
178
|
|
174
|
-
|
175
|
-
|
179
|
+
if args.chain:
|
180
|
+
entity_ids = select_ids(data, "struct_asym", "id", "entity_id", set(args.chain))
|
181
|
+
asym_ids = set(args.chain)
|
182
|
+
else:
|
183
|
+
entity_ids = select_ids(
|
184
|
+
data, "entity_poly", "type", "entity_id", set(args.type)
|
185
|
+
)
|
186
|
+
asym_ids = select_ids(data, "struct_asym", "entity_id", "id", entity_ids)
|
187
|
+
|
176
188
|
auth_asym_ids = select_ids(
|
177
189
|
data, "atom_site", "label_asym_id", "auth_asym_id", asym_ids
|
178
190
|
)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|