RNApolis 0.4.12__tar.gz → 0.4.13__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {rnapolis-0.4.12/src/RNApolis.egg-info → rnapolis-0.4.13}/PKG-INFO +1 -1
- {rnapolis-0.4.12 → rnapolis-0.4.13}/setup.py +1 -1
- {rnapolis-0.4.12 → rnapolis-0.4.13/src/RNApolis.egg-info}/PKG-INFO +1 -1
- {rnapolis-0.4.12 → rnapolis-0.4.13}/src/rnapolis/molecule_filter.py +1 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/tests/test_molecule_filter.py +3 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/LICENSE +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/README.md +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/pyproject.toml +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/setup.cfg +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/src/RNApolis.egg-info/SOURCES.txt +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/src/RNApolis.egg-info/dependency_links.txt +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/src/RNApolis.egg-info/entry_points.txt +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/src/RNApolis.egg-info/requires.txt +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/src/RNApolis.egg-info/top_level.txt +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/src/rnapolis/annotator.py +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/src/rnapolis/clashfinder.py +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/src/rnapolis/common.py +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/src/rnapolis/metareader.py +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/src/rnapolis/motif_extractor.py +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/src/rnapolis/parser.py +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/src/rnapolis/rfam_folder.py +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/src/rnapolis/tertiary.py +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/src/rnapolis/transformer.py +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/src/rnapolis/util.py +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/tests/test_annotator.py +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/tests/test_bugfixes.py +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/tests/test_common.py +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/tests/test_metareader.py +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/tests/test_parser.py +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/tests/test_quadruplexes.py +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/tests/test_rfam_folder.py +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/tests/test_tertiary.py +0 -0
- {rnapolis-0.4.12 → rnapolis-0.4.13}/tests/test_transformer.py +0 -0
@@ -1,3 +1,4 @@
|
|
1
|
+
import re
|
1
2
|
import tempfile
|
2
3
|
|
3
4
|
from rnapolis.molecule_filter import filter_by_chains, filter_by_poly_types
|
@@ -9,6 +10,7 @@ def test_filter_by_poly_types():
|
|
9
10
|
content = f.read()
|
10
11
|
|
11
12
|
filtered = filter_by_poly_types(content, ["polyribonucleotide"])
|
13
|
+
assert re.search(r"^_entity.id", filtered, re.MULTILINE) is not None
|
12
14
|
|
13
15
|
with tempfile.NamedTemporaryFile("rt+") as f:
|
14
16
|
f.write(filtered)
|
@@ -24,6 +26,7 @@ def test_filter_by_chains():
|
|
24
26
|
content = f.read()
|
25
27
|
|
26
28
|
filtered = filter_by_chains(content, ["A", "C"])
|
29
|
+
assert re.search(r"^_entity.id", filtered, re.MULTILINE) is not None
|
27
30
|
|
28
31
|
with tempfile.NamedTemporaryFile("rt+") as f:
|
29
32
|
f.write(filtered)
|
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
|
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
|