ORForise 1.4.2__py3-none-any.whl → 1.4.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.
- ORForise/Comparator.py +2 -1
- ORForise/utils.py +1 -1
- {ORForise-1.4.2.dist-info → orforise-1.4.3.dist-info}/METADATA +7 -6
- {ORForise-1.4.2.dist-info → orforise-1.4.3.dist-info}/RECORD +8 -8
- {ORForise-1.4.2.dist-info → orforise-1.4.3.dist-info}/WHEEL +1 -1
- {ORForise-1.4.2.dist-info → orforise-1.4.3.dist-info}/entry_points.txt +0 -0
- {ORForise-1.4.2.dist-info → orforise-1.4.3.dist-info/licenses}/LICENSE +0 -0
- {ORForise-1.4.2.dist-info → orforise-1.4.3.dist-info}/top_level.txt +0 -0
ORForise/Comparator.py
CHANGED
|
@@ -230,7 +230,8 @@ def candidate_ORF_Selection(gene_Set,
|
|
|
230
230
|
for c_Pos, c_ORF_Details in candidate_ORFs.items():
|
|
231
231
|
o_Start = int(c_Pos.split(',')[0])
|
|
232
232
|
o_Stop = int(c_Pos.split(',')[1])
|
|
233
|
-
|
|
233
|
+
# Below is not a long term fix
|
|
234
|
+
coverage = c_ORF_Details[-1]
|
|
234
235
|
orf_Set = set(range(o_Start, o_Stop + 1))
|
|
235
236
|
if coverage > current_Coverage:
|
|
236
237
|
current_Coverage = coverage
|
ORForise/utils.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: ORForise
|
|
3
|
-
Version: 1.4.
|
|
3
|
+
Version: 1.4.3
|
|
4
4
|
Summary: ORForise - Platform for analysing and comparing Prokaryote CoDing Sequence (CDS) Gene Predictions.
|
|
5
5
|
Home-page: https://github.com/NickJD/ORForise
|
|
6
6
|
Author: Nicholas Dimonaco
|
|
@@ -13,6 +13,7 @@ Requires-Python: >=3.6
|
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
|
15
15
|
Requires-Dist: numpy
|
|
16
|
+
Dynamic: license-file
|
|
16
17
|
|
|
17
18
|
# ORForise - Prokaryote Genome Annotation Analysis and Comparison Platform
|
|
18
19
|
## Published in Bioinformatics : https://academic.oup.com/bioinformatics/article/38/5/1198/6454948
|
|
@@ -62,7 +63,7 @@ Please report any issues to: https://github.com/NickJD/ORForise/issues
|
|
|
62
63
|
usage: Annotation_Compare.py [-h] -dna GENOME_DNA -ref REFERENCE_ANNOTATION -t TOOL -tp TOOL_PREDICTION
|
|
63
64
|
[-rt REFERENCE_TOOL] [-o OUTNAME] [-v {True,False}]
|
|
64
65
|
|
|
65
|
-
ORForise v1.4.
|
|
66
|
+
ORForise v1.4.3: Annotatione-Compare Run Parameters.
|
|
66
67
|
|
|
67
68
|
Required Arguments:
|
|
68
69
|
-dna GENOME_DNA Genome DNA file (.fa) which both annotations are based on
|
|
@@ -112,7 +113,7 @@ Please report any issues to: https://github.com/NickJD/ORForise/issues
|
|
|
112
113
|
usage: Aggregate_Compare.py [-h] -dna GENOME_DNA -t TOOLS -tp TOOL_PREDICTIONS -ref REFERENCE_ANNOTATION
|
|
113
114
|
[-rt REFERENCE_TOOL] [-o OUTNAME] [-v {True,False}]
|
|
114
115
|
|
|
115
|
-
ORForise v1.4.
|
|
116
|
+
ORForise v1.4.3: Aggregate-Compare Run Parameters.
|
|
116
117
|
|
|
117
118
|
Required Arguments:
|
|
118
119
|
-dna GENOME_DNA Genome DNA file (.fa) which both annotations are based on
|
|
@@ -266,7 +267,7 @@ Please report any issues to: https://github.com/NickJD/ORForise/issues
|
|
|
266
267
|
usage: GFF_Adder.py [-h] -dna GENOME_DNA -ref REFERENCE_ANNOTATION -at ADDITIONAL_TOOL -add ADDITIONAL_ANNOTATION -o
|
|
267
268
|
OUTPUT_FILE [-rt REFERENCE_TOOL] [-gi GENE_IDENT] [-gene_ident GENE_IDENT] [-olap OVERLAP]
|
|
268
269
|
|
|
269
|
-
ORForise v1.4.
|
|
270
|
+
ORForise v1.4.3: GFF-Adder Run Parameters.
|
|
270
271
|
|
|
271
272
|
Required Arguments:
|
|
272
273
|
-dna GENOME_DNA Genome DNA file (.fa) which both annotations are based on
|
|
@@ -328,7 +329,7 @@ Please report any issues to: https://github.com/NickJD/ORForise/issues
|
|
|
328
329
|
usage: GFF_Intersector.py [-h] -dna GENOME_DNA -ref REFERENCE_ANNOTATION -at ADDITIONAL_TOOL -add
|
|
329
330
|
ADDITIONAL_ANNOTATION -o OUTPUT_FILE [-rt REFERENCE_TOOL] [-gi GENE_IDENT] [-cov COVERAGE]
|
|
330
331
|
|
|
331
|
-
ORForise v1.4.
|
|
332
|
+
ORForise v1.4.3: GFF-Intersector Run Parameters.
|
|
332
333
|
|
|
333
334
|
Required Arguments:
|
|
334
335
|
-dna GENOME_DNA Genome DNA file (.fa) which both annotations are based on
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
ORForise/Aggregate_Compare.py,sha256=cY0PdA_SnywPcqwPomXmEHaZ6OUDS9k_QeLtXnewjiA,10648
|
|
2
2
|
ORForise/Annotation_Compare.py,sha256=6y_RiJg0q9g4Bcwy8Lxi5gSDkMLwm6uYJG2evxnKAhU,10228
|
|
3
|
-
ORForise/Comparator.py,sha256=
|
|
3
|
+
ORForise/Comparator.py,sha256=kGRn7_CYKULI5xV7IH2RpRIP0xpj_OfPxO4iGdLBnKQ,45081
|
|
4
4
|
ORForise/GFF_Adder.py,sha256=-BlF6DQWcbhyYT88M0ZkoaWA2YDDxsby-7jksfeJN1Q,14057
|
|
5
5
|
ORForise/GFF_Intersector.py,sha256=EcDKyJr_47066kma2CguMf3uwzB2tYomPDFjmoX8IoU,9900
|
|
6
6
|
ORForise/StORForise.py,sha256=2QU6q3wPK6iqtyKg2jEVwFTB4bSymyc-mSpk7T8yNaY,5431
|
|
7
7
|
ORForise/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
-
ORForise/utils.py,sha256=
|
|
8
|
+
ORForise/utils.py,sha256=39OeKjNTRkyoEqxsTCrcwucbrkKOq3CTd6wEm1p7MOA,1099
|
|
9
9
|
ORForise/ORForise_Analysis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
10
|
ORForise/ORForise_Analysis/cds_checker.py,sha256=x838-PDd8HxZ3uhfW7wPzaJdiVwomNaYOZzMe-09f_0,2643
|
|
11
11
|
ORForise/ORForise_Analysis/gene_Lenghts.py,sha256=eDmJqVjBJYkBMuLr4s4XDA-E-fv0eEITpWAPySOynow,939
|
|
@@ -60,9 +60,9 @@ ORForise/Tools/StORF_Undetected/unvitiated_Genes/__init__.py,sha256=47DEQpj8HBSa
|
|
|
60
60
|
ORForise/Tools/StORF_Undetected/unvitiated_Genes/unvitiated_Missed_Genes.py,sha256=notWaFx7AG8BZjBhnGuSyitxa1cRK_7rygOPp9keGfM,1863
|
|
61
61
|
ORForise/Tools/TransDecoder/TransDecoder.py,sha256=utnL52il6BGbbBxoizYPnY1qwBGeslYDCa5xU9RGWPg,1384
|
|
62
62
|
ORForise/Tools/TransDecoder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
63
|
+
orforise-1.4.3.dist-info/licenses/LICENSE,sha256=eAL1bBUjSMCdvudcn9E3sbujCBCa839cqXxauONDbSU,32476
|
|
64
|
+
orforise-1.4.3.dist-info/METADATA,sha256=7JZBTCxggexbQcUsHTNdZBKUQ1laUnINv0vIGq_6k0k,36479
|
|
65
|
+
orforise-1.4.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
66
|
+
orforise-1.4.3.dist-info/entry_points.txt,sha256=ss2cbLmljRmLIeZ3t48p_06NuQuRiKeA11IOUYg_uiY,246
|
|
67
|
+
orforise-1.4.3.dist-info/top_level.txt,sha256=7kmFicUFY65FJmioc0cpZtXVz93V7KSKvZVWpGz5Hyk,9
|
|
68
|
+
orforise-1.4.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|