ORForise 1.6.0__py3-none-any.whl → 1.6.1__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/Aggregate_Compare.py +2 -4
- ORForise/Annotation_Compare.py +4 -7
- ORForise/Annotation_Intersector.py +726 -0
- ORForise/Convert_To_GFF.py +6 -5
- ORForise/GFF_Adder.py +454 -179
- ORForise/List_Tools.py +63 -0
- ORForise/StORForise.py +8 -4
- ORForise/Tools/EasyGene/EasyGene.py +13 -1
- ORForise/Tools/{GLIMMER_3/GLIMMER_3.py → GLIMMER3/GLIMMER3.py} +2 -2
- ORForise/Tools/{GeneMark_HA/GeneMark_HA.py → GeneMarkHA/GeneMarkHA.py} +1 -1
- ORForise/Tools/GeneMarkHA/__init__.py +0 -0
- ORForise/Tools/Prodigal/Prodigal.py +13 -1
- ORForise/utils.py +4 -1
- {orforise-1.6.0.dist-info → orforise-1.6.1.dist-info}/METADATA +216 -229
- {orforise-1.6.0.dist-info → orforise-1.6.1.dist-info}/RECORD +29 -27
- {orforise-1.6.0.dist-info → orforise-1.6.1.dist-info}/entry_points.txt +4 -2
- ORForise/GFF_Intersector.py +0 -192
- /ORForise/{Tools → Aux}/StORF_Undetected/Completely_Undetected/Completey_Undetected.py +0 -0
- /ORForise/{Tools/GLIMMER_3 → Aux/StORF_Undetected/Completely_Undetected}/__init__.py +0 -0
- /ORForise/{Tools → Aux}/StORF_Undetected/StORF_Undetected.py +0 -0
- /ORForise/{Tools/GeneMark_HA → Aux/StORF_Undetected}/__init__.py +0 -0
- /ORForise/{Tools/StORF_Undetected/Completely_Undetected → Aux/StORF_Undetected/unvitiated_Genes}/__init__.py +0 -0
- /ORForise/{Tools → Aux}/StORF_Undetected/unvitiated_Genes/unvitiated_Missed_Genes.py +0 -0
- /ORForise/{Tools → Aux}/TabToGFF/TabToGFF.py +0 -0
- /ORForise/{Tools/StORF_Undetected → Aux/TabToGFF}/__init__.py +0 -0
- /ORForise/{Tools/StORF_Undetected/unvitiated_Genes → Aux}/__init__.py +0 -0
- /ORForise/Tools/{TabToGFF → GLIMMER3}/__init__.py +0 -0
- {orforise-1.6.0.dist-info → orforise-1.6.1.dist-info}/WHEEL +0 -0
- {orforise-1.6.0.dist-info → orforise-1.6.1.dist-info}/licenses/LICENSE +0 -0
- {orforise-1.6.0.dist-info → orforise-1.6.1.dist-info}/top_level.txt +0 -0
ORForise/Convert_To_GFF.py
CHANGED
|
@@ -6,10 +6,10 @@ import sys
|
|
|
6
6
|
|
|
7
7
|
try:
|
|
8
8
|
from utils import *
|
|
9
|
-
from
|
|
9
|
+
from ORForise.src.ORForise.Aux.TabToGFF import TabToGFF
|
|
10
10
|
except ImportError:
|
|
11
11
|
from ORForise.utils import *
|
|
12
|
-
from ORForise.
|
|
12
|
+
from ORForise.Aux.TabToGFF.TabToGFF import TabToGFF
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
def setup_logging(outdir, verbose=False):
|
|
@@ -71,19 +71,20 @@ def load_genome(genome_fasta):
|
|
|
71
71
|
|
|
72
72
|
|
|
73
73
|
def main():
|
|
74
|
-
print(
|
|
74
|
+
print(WELCOME)
|
|
75
75
|
|
|
76
76
|
parser = argparse.ArgumentParser(description='ORForise ' + ORForise_Version + ': Convert-To-GFF Run Parameters')
|
|
77
77
|
parser._action_groups.pop()
|
|
78
78
|
|
|
79
79
|
required = parser.add_argument_group('Required Arguments')
|
|
80
|
-
|
|
81
|
-
required.add_argument('-dna', dest='genome_DNA', required=False, help='Genome DNA file (.fa)')
|
|
80
|
+
|
|
82
81
|
required.add_argument('-i', dest='input_annotation', required=True, help='Input annotation file (tabular)')
|
|
83
82
|
required.add_argument('-fmt', dest='format', required=True, help='Input format: blast, abricate, genemark')
|
|
84
83
|
required.add_argument('-o', dest='output_dir', required=True, help='Output directory')
|
|
85
84
|
|
|
86
85
|
optional = parser.add_argument_group('Optional Arguments')
|
|
86
|
+
# Make genome DNA optional: if not provided we operate without genome sequence
|
|
87
|
+
required.add_argument('-dna', dest='genome_DNA', required=False, help='Genome DNA file (.fa)')
|
|
87
88
|
optional.add_argument('-gi', dest='gene_ident', default='CDS', required=False, help='Gene identifier types to extract (unused)')
|
|
88
89
|
optional.add_argument('--verbose', dest='verbose', action='store_true', help='Verbose logging with logfile')
|
|
89
90
|
|