REDItools3 3.2a0__py3-none-any.whl → 3.3__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 REDItools3 might be problematic. Click here for more details.
- reditools/analyze.py +3 -2
- reditools/rtchecks.py +5 -3
- {REDItools3-3.2a0.dist-info → reditools3-3.3.dist-info}/METADATA +5 -5
- {REDItools3-3.2a0.dist-info → reditools3-3.3.dist-info}/RECORD +7 -7
- {REDItools3-3.2a0.dist-info → reditools3-3.3.dist-info}/WHEEL +1 -1
- {REDItools3-3.2a0.dist-info → reditools3-3.3.dist-info}/LICENSE +0 -0
- {REDItools3-3.2a0.dist-info → reditools3-3.3.dist-info}/top_level.txt +0 -0
reditools/analyze.py
CHANGED
|
@@ -89,7 +89,8 @@ def setup_rtools(options): # noqa:WPS213,WPS231
|
|
|
89
89
|
)
|
|
90
90
|
|
|
91
91
|
if options.bed_file:
|
|
92
|
-
|
|
92
|
+
regions = file_utils.read_bed_file(options.bed_file)
|
|
93
|
+
rtools.target_positions = regions
|
|
93
94
|
if options.exclude_regions:
|
|
94
95
|
for fname in options.exclude_regions:
|
|
95
96
|
regions = file_utils.read_bed_file(fname)
|
|
@@ -208,7 +209,7 @@ def run(options, in_queue, out_queue):
|
|
|
208
209
|
except Exception as exc:
|
|
209
210
|
if options.debug:
|
|
210
211
|
traceback.print_exception(*sys.exc_info())
|
|
211
|
-
sys.stderr.write(f'[ERROR] {exc}\n')
|
|
212
|
+
sys.stderr.write(f'[ERROR] ({type(exc)}) {exc}\n')
|
|
212
213
|
|
|
213
214
|
|
|
214
215
|
def parse_options(): # noqa:WPS213
|
reditools/rtchecks.py
CHANGED
|
@@ -149,12 +149,14 @@ class RTChecks(object):
|
|
|
149
149
|
Returns:
|
|
150
150
|
(bool): True if there are sufficient edits
|
|
151
151
|
"""
|
|
152
|
-
for
|
|
153
|
-
if
|
|
152
|
+
for base in "ATCG":
|
|
153
|
+
if base == bases.ref:
|
|
154
|
+
continue
|
|
155
|
+
if bases[base] < rtools.min_edits_per_nucleotide:
|
|
154
156
|
rtools.log(
|
|
155
157
|
Logger.debug_level,
|
|
156
158
|
'DISCARDING COLUMN edits={} < {}',
|
|
157
|
-
|
|
159
|
+
bases[base],
|
|
158
160
|
rtools.min_edits_per_nucleotide,
|
|
159
161
|
)
|
|
160
162
|
return False
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: REDItools3
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.3
|
|
4
4
|
Author: Ernesto Picardi
|
|
5
5
|
Author-email: Adam Handen <adam.handen@gmail.com>
|
|
6
6
|
Project-URL: homepage, https://github.com/BioinfoUNIBA/REDItools3
|
|
7
7
|
Project-URL: repository, https://github.com/BioinfoUNIBA/REDItools3
|
|
8
8
|
Project-URL: issues, https://github.com/BioinfoUNIBA/REDItools3/issues
|
|
9
9
|
Keywords: bioinformatics,RNA,RNA-editing
|
|
10
|
-
Classifier: Development Status ::
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
12
12
|
Classifier: Intended Audience :: Science/Research
|
|
13
13
|
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
|
|
@@ -18,8 +18,8 @@ Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
|
|
|
18
18
|
Requires-Python: >=3.7
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: LICENSE
|
|
21
|
-
Requires-Dist: pysam
|
|
22
|
-
Requires-Dist: sortedcontainers
|
|
21
|
+
Requires-Dist: pysam>=0.22.0
|
|
22
|
+
Requires-Dist: sortedcontainers>=2.4.0
|
|
23
23
|
|
|
24
24
|
# REDItools3
|
|
25
25
|
A new REDItools implementation to speed-up the RNA editing profiling in massive RNAseq data
|
|
@@ -2,7 +2,7 @@ reditools/__init__.py,sha256=7nSB0hrQznxrn6l95cv_pSonJTG6jZCQdbn7aT1TtvY,46
|
|
|
2
2
|
reditools/__main__.py,sha256=mWJ9O2LDiOpBWDBJJUN7OiM4SyltW-kVXXAGBe_JxgQ,842
|
|
3
3
|
reditools/alignment_file.py,sha256=YFyCEhMek2t93DpmpwEst5v3gDZkmRotbd6Fy_mP0aE,4258
|
|
4
4
|
reditools/alignment_manager.py,sha256=_FXwvqGWoXRdzVrwBxki2heaVZA2cQbGXqCopr-g1Hs,4138
|
|
5
|
-
reditools/analyze.py,sha256=
|
|
5
|
+
reditools/analyze.py,sha256=7J_arZX2Sc-lFuFdjjGq_G7QQ8s2hQ1paWqqUBXoftQ,14711
|
|
6
6
|
reditools/compiled_position.py,sha256=v540uUEie_HHUwsYQmBqeeOkUvtYlcnWj1v8gAhLUiE,3858
|
|
7
7
|
reditools/compiled_reads.py,sha256=7Hm5f7g1T8q1zDOOxZUD7aZax9b7SdQ0PlmT93hmcaE,4154
|
|
8
8
|
reditools/fasta_file.py,sha256=KBsJBs7OnBpew2PGWGp0mTxPLlpBmRrtXL4uvQw4t34,2212
|
|
@@ -12,10 +12,10 @@ reditools/index.py,sha256=jLgWwKXIA_e-bqVu74SDZXmrdWch_syDSmMnFZPbqz4,7537
|
|
|
12
12
|
reditools/logger.py,sha256=u4L2SYxy4vJ4KDHEymd0b1sCa8BXXHchx8LR_wcFq1A,1210
|
|
13
13
|
reditools/reditools.py,sha256=RNH7aKC2QnbafA7T9E6UpV5Llv3FjfDIabjPCuwDgW0,13111
|
|
14
14
|
reditools/region.py,sha256=_BiKDc5lCl1snjkokRiUWOgzA57ME3yLydEIwK9ku7U,3780
|
|
15
|
-
reditools/rtchecks.py,sha256=
|
|
15
|
+
reditools/rtchecks.py,sha256=q_-8iAV51mGrqN30blSgMD_htF3CGrPyrI4PD3CSCLQ,8917
|
|
16
16
|
reditools/utils.py,sha256=a2qfhMcrH2QlK-JoR-HHF6_bnlo5v3jihAqqknvVIjc,2733
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
17
|
+
reditools3-3.3.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
18
|
+
reditools3-3.3.dist-info/METADATA,sha256=Toc23YEA7V-dWeNWbNay_vtq_ycxWLHKtstCbsIp9yg,1296
|
|
19
|
+
reditools3-3.3.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
|
20
|
+
reditools3-3.3.dist-info/top_level.txt,sha256=wrvvbFXhmNg7s6LQqjlV_fVQYUZOOpF93IcMu_hBCx4,10
|
|
21
|
+
reditools3-3.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|