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.
Files changed (30) hide show
  1. ORForise/Aggregate_Compare.py +2 -4
  2. ORForise/Annotation_Compare.py +4 -7
  3. ORForise/Annotation_Intersector.py +726 -0
  4. ORForise/Convert_To_GFF.py +6 -5
  5. ORForise/GFF_Adder.py +454 -179
  6. ORForise/List_Tools.py +63 -0
  7. ORForise/StORForise.py +8 -4
  8. ORForise/Tools/EasyGene/EasyGene.py +13 -1
  9. ORForise/Tools/{GLIMMER_3/GLIMMER_3.py → GLIMMER3/GLIMMER3.py} +2 -2
  10. ORForise/Tools/{GeneMark_HA/GeneMark_HA.py → GeneMarkHA/GeneMarkHA.py} +1 -1
  11. ORForise/Tools/GeneMarkHA/__init__.py +0 -0
  12. ORForise/Tools/Prodigal/Prodigal.py +13 -1
  13. ORForise/utils.py +4 -1
  14. {orforise-1.6.0.dist-info → orforise-1.6.1.dist-info}/METADATA +216 -229
  15. {orforise-1.6.0.dist-info → orforise-1.6.1.dist-info}/RECORD +29 -27
  16. {orforise-1.6.0.dist-info → orforise-1.6.1.dist-info}/entry_points.txt +4 -2
  17. ORForise/GFF_Intersector.py +0 -192
  18. /ORForise/{Tools → Aux}/StORF_Undetected/Completely_Undetected/Completey_Undetected.py +0 -0
  19. /ORForise/{Tools/GLIMMER_3 → Aux/StORF_Undetected/Completely_Undetected}/__init__.py +0 -0
  20. /ORForise/{Tools → Aux}/StORF_Undetected/StORF_Undetected.py +0 -0
  21. /ORForise/{Tools/GeneMark_HA → Aux/StORF_Undetected}/__init__.py +0 -0
  22. /ORForise/{Tools/StORF_Undetected/Completely_Undetected → Aux/StORF_Undetected/unvitiated_Genes}/__init__.py +0 -0
  23. /ORForise/{Tools → Aux}/StORF_Undetected/unvitiated_Genes/unvitiated_Missed_Genes.py +0 -0
  24. /ORForise/{Tools → Aux}/TabToGFF/TabToGFF.py +0 -0
  25. /ORForise/{Tools/StORF_Undetected → Aux/TabToGFF}/__init__.py +0 -0
  26. /ORForise/{Tools/StORF_Undetected/unvitiated_Genes → Aux}/__init__.py +0 -0
  27. /ORForise/Tools/{TabToGFF → GLIMMER3}/__init__.py +0 -0
  28. {orforise-1.6.0.dist-info → orforise-1.6.1.dist-info}/WHEEL +0 -0
  29. {orforise-1.6.0.dist-info → orforise-1.6.1.dist-info}/licenses/LICENSE +0 -0
  30. {orforise-1.6.0.dist-info → orforise-1.6.1.dist-info}/top_level.txt +0 -0
@@ -6,10 +6,10 @@ import sys
6
6
 
7
7
  try:
8
8
  from utils import *
9
- from Tools.TabToGFF.TabToGFF import TabToGFF
9
+ from ORForise.src.ORForise.Aux.TabToGFF import TabToGFF
10
10
  except ImportError:
11
11
  from ORForise.utils import *
12
- from ORForise.Tools.TabToGFF.TabToGFF import TabToGFF
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("Thank you for using ORForise\nPlease report any issues to: https://github.com/NickJD/ORForise/issues\n#####")
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
- # Make genome DNA optional: if not provided we operate without genome sequence
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