ORForise 1.4.1__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.
@@ -72,11 +72,11 @@ def comparator(options):
72
72
  rep_metric_description = list(all_rep_Metrics.keys())
73
73
  rep_metrics = list(all_rep_Metrics.values())
74
74
  ############## Printing to std-out and optional csv file
75
- print('Genome Used: ' + str(options.reference_annotation.split('/')[-1]))
75
+ print('Genome Used: ' + str(options.genome_DNA.split('/')[-1]))
76
76
  if options.reference_tool:
77
77
  print('Reference Tool Used: '+str(options.reference_tool))
78
78
  else:
79
- print('Reference Used: ' + str(options.reference_annotation))
79
+ print('Reference Used: ' + str(options.reference_annotation.split('/')[-1]))
80
80
  print('Tool Compared: '+str(options.tool))
81
81
  print('Perfect Matches: ' + str(len(perfect_Matches)) + ' [' + str(len(ref_genes))+ '] - '+ format(100 * len(perfect_Matches)/len(ref_genes),'.2f')+'%')
82
82
  print('Partial Matches: ' + str(len(partial_Hits)) + ' [' + str(len(ref_genes))+ '] - '+ format(100 * len(partial_Hits)/len(ref_genes),'.2f')+'%')
ORForise/Comparator.py CHANGED
@@ -47,13 +47,30 @@ comp = comparator()
47
47
 
48
48
  def is_double_range(range1, range2):
49
49
  return len(range1) >= 2 * len(range2)
50
- def nuc_Count(start, stop, strand): # Gets correct seq then returns GC
51
- if strand == '-':
52
- r_Start = comp.genome_Size - stop
53
- r_Stop = comp.genome_Size - start
54
- seq = (comp.genome_Seq_Rev[r_Start:r_Stop + 1])
55
- elif strand == '+':
56
- seq = (comp.genome_Seq[start - 1:stop])
50
+ def nuc_Count(verbose, start, stop, strand): # Gets correct seq then returns GC
51
+ if stop >= comp.genome_Size:
52
+ if verbose == True:
53
+ print("There is a wrap around gene and I am dealing with it the best I can - Start: " + str(start) + " Stop: " + str(stop))
54
+ extra_stop = stop - comp.genome_Size
55
+ stop = comp.genome_Size
56
+ if strand == '-':
57
+ r_Start = comp.genome_Size - stop
58
+ r_Stop = comp.genome_Size - start
59
+ seq = (comp.genome_Seq_Rev[r_Start:r_Stop + 1])
60
+ extra_seq = (comp.genome_Seq_Rev[-extra_stop-1:])
61
+ seq = extra_seq+seq
62
+ elif strand == '+':
63
+ seq = comp.genome_Seq[start - 1:stop]
64
+ extra_seq = comp.genome_Seq[:extra_stop +1]
65
+ seq = seq+extra_seq
66
+ #seq = (comp.genome_Seq[start - 1:stop])
67
+ else:
68
+ if strand == '-':
69
+ r_Start = comp.genome_Size - stop
70
+ r_Stop = comp.genome_Size - start
71
+ seq = (comp.genome_Seq_Rev[r_Start:r_Stop + 1])
72
+ elif strand == '+':
73
+ seq = (comp.genome_Seq[start - 1:stop])
57
74
  c = 0
58
75
  a = 0
59
76
  g = 0
@@ -213,7 +230,8 @@ def candidate_ORF_Selection(gene_Set,
213
230
  for c_Pos, c_ORF_Details in candidate_ORFs.items():
214
231
  o_Start = int(c_Pos.split(',')[0])
215
232
  o_Stop = int(c_Pos.split(',')[1])
216
- coverage = c_ORF_Details[3]
233
+ # Below is not a long term fix
234
+ coverage = c_ORF_Details[-1]
217
235
  orf_Set = set(range(o_Start, o_Stop + 1))
218
236
  if coverage > current_Coverage:
219
237
  current_Coverage = coverage
@@ -323,8 +341,8 @@ def tool_comparison(ref_genes, orfs, genome, verbose):
323
341
  comp.genes_Detected.update({str(gene_details): g_pos})
324
342
  match_Statistics(o_Start, o_Stop, g_Start, g_Stop, g_Strand)
325
343
  perfect_Matched_Genes(g_Start, g_Stop, g_Strand)
326
- if verbose == True:
327
- print('Perfect Match')
344
+ #if verbose == True:
345
+ # print('Perfect Match')
328
346
  elif perfect_Match == False and len(
329
347
  overlapping_ORFs) == 1: # If we do not have a perfect match but 1 ORF which has passed the filtering
330
348
  orf_Pos = list(overlapping_ORFs.keys())[0]
@@ -344,8 +362,8 @@ def tool_comparison(ref_genes, orfs, genome, verbose):
344
362
  comp.matched_ORFs.update({orf_Pos: m_ORF_Details})
345
363
  comp.genes_Detected.update({str(gene_details): orf_Pos})
346
364
  match_Statistics(o_Start, o_Stop, g_Start, g_Stop, g_Strand)
347
- if verbose == True:
348
- print('Partial Match')
365
+ #if verbose == True:
366
+ # print('Partial Match')
349
367
  partial_Hit_Calc(g_Start, g_Stop, g_Strand, o_Start, o_Stop)
350
368
  elif perfect_Match == False and len(
351
369
  overlapping_ORFs) >= 1: # If we have more than 1 potential ORF match, we check to see which is the 'best' hit
@@ -374,8 +392,8 @@ def tool_comparison(ref_genes, orfs, genome, verbose):
374
392
  genes_Unmatched(g_Start, g_Stop, g_Strand) #
375
393
  else:
376
394
  genes_Unmatched(g_Start, g_Stop, g_Strand) # No hit
377
- if verbose == True:
378
- print("No Hit")
395
+ #if verbose == True:
396
+ # print("No Hit")
379
397
  for orf_Key in comp.matched_ORFs: # Remove ORFs from out of frame if ORF was correctly matched to another Gene
380
398
  if orf_Key in comp.out_Of_Frame_ORFs:
381
399
  del comp.out_Of_Frame_ORFs[orf_Key]
@@ -409,7 +427,7 @@ def tool_comparison(ref_genes, orfs, genome, verbose):
409
427
  if gene_Length == 0: print(g_Start, g_Stop, "!!!!!!!!!!!!!!!!!!!!!!!!")
410
428
  comp.gene_Lengths.append(gene_Length)
411
429
  gene_Nuc_Array[g_Start - 1:g_Stop] = True # Changing all between the two positions to 1's
412
- comp.gene_GC.append(nuc_Count(g_Start, g_Stop, g_Strand))
430
+ comp.gene_GC.append(nuc_Count(verbose, g_Start, g_Stop, g_Strand))
413
431
  if gene_Length <= SHORT_ORF_LENGTH: # .utils
414
432
  comp.gene_Short.append(gene_Length)
415
433
  ### Calculate overlapping Genes -
@@ -453,7 +471,7 @@ def tool_comparison(ref_genes, orfs, genome, verbose):
453
471
  orf_Length = (o_Stop - o_Start) +1
454
472
  comp.orf_Lengths.append(orf_Length)
455
473
  orf_Nuc_Array[o_Start - 1:o_Stop] = True # Changing all between the two positions to 1's
456
- comp.orf_GC.append(nuc_Count(o_Start, o_Stop, o_Strand))
474
+ comp.orf_GC.append(nuc_Count(verbose, o_Start, o_Stop, o_Strand))
457
475
  if orf_Length <= SHORT_ORF_LENGTH: # .utils
458
476
  comp.orf_Short.append(orf_Length)
459
477
  ### Calculate overlapping ORFs -
@@ -487,7 +505,7 @@ def tool_comparison(ref_genes, orfs, genome, verbose):
487
505
  mo_Length = (mo_Stop - mo_Start)
488
506
  matched_ORF_Nuc_Array[mo_Start - 1:mo_Stop] = True # This is the complete matched orf not the matched orf bits
489
507
 
490
- comp.m_ORF_GC.append(nuc_Count(mo_Start, mo_Stop, mo_Strand))
508
+ comp.m_ORF_GC.append(nuc_Count(verbose, mo_Start, mo_Stop, mo_Strand))
491
509
  if mo_Length <= SHORT_ORF_LENGTH: # .utils
492
510
  comp.m_ORF_Short.append(mo_Length)
493
511
  ### Calculate overlapping Matched ORFs -
ORForise/Tools/GFF/GFF.py CHANGED
@@ -26,15 +26,32 @@ def GFF(*args):
26
26
  stop = int(line[4])
27
27
  strand = line[6]
28
28
  info = line[8]
29
- #name = line[8].split('Name=')[1].split(';')[0] # Issue with multiple records for each gene.
30
- if '-' in strand: # Reverse Compliment starts and stops adjusted
31
- r_start = genome_size - stop
32
- r_stop = genome_size - start
33
- startCodon = genome_rev[r_start:r_start + 3]
34
- stopCodon = genome_rev[r_stop - 2:r_stop + 1]
35
- elif '+' in strand:
36
- startCodon = genome[start - 1:start + 2]
37
- stopCodon = genome[stop - 3:stop]
29
+ if stop >= genome_size:
30
+ extra_stop = stop - genome_size
31
+ corrected_stop = genome_size
32
+ if '-' in strand: # Reverse Compliment starts and stops adjusted
33
+ r_start = genome_size - corrected_stop
34
+ r_stop = genome_size - start
35
+ seq = genome_rev[r_start:r_stop + 1]
36
+ extra_seq = genome_rev[-extra_stop - 1:]
37
+ seq = extra_seq+seq
38
+ startCodon = seq[:3]
39
+ stopCodon = seq[-3:]
40
+ elif '+' in strand:
41
+ seq = genome[start -1 :corrected_stop]
42
+ extra_seq = genome[:extra_stop +1]
43
+ seq = seq+extra_seq
44
+ startCodon = seq[:3]
45
+ stopCodon = seq[-3:]
46
+ else:
47
+ if '-' in strand: # Reverse Compliment starts and stops adjusted
48
+ r_start = genome_size - stop
49
+ r_stop = genome_size - start
50
+ startCodon = genome_rev[r_start:r_start + 3]
51
+ stopCodon = genome_rev[r_stop - 2:r_stop + 1]
52
+ elif '+' in strand:
53
+ startCodon = genome[start - 1:start + 2]
54
+ stopCodon = genome[stop - 3:stop]
38
55
  po = str(start) + ',' + str(stop)
39
56
  orf = [strand, startCodon, stopCodon, line[2],info] # This needs to detect the type
40
57
  GFF_ORFs.update({po: orf})
ORForise/utils.py CHANGED
@@ -4,7 +4,7 @@ import collections
4
4
  # Constants
5
5
  SHORT_ORF_LENGTH = 300
6
6
  MIN_COVERAGE = 75
7
- ORForise_Version = 'v1.4.1'
7
+ ORForise_Version = 'v1.4.3'
8
8
 
9
9
 
10
10
  def revCompIterative(watson): # Gets Reverse Complement
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: ORForise
3
- Version: 1.4.1
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.1: Annotatione-Compare Run Parameters.
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.1: Aggregate-Compare Run Parameters.
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.1: GFF-Adder Run Parameters.
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.1: GFF-Intersector Run Parameters.
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
- ORForise/Annotation_Compare.py,sha256=VnIUbE2pNfP9afooRzs_0_9Xg1FL8ipnYp_Km48UU54,10223
3
- ORForise/Comparator.py,sha256=VTytbbAMkOo7_GFN1itnkFcc8nmvdnoPNWX7LI0LFQU,44200
2
+ ORForise/Annotation_Compare.py,sha256=6y_RiJg0q9g4Bcwy8Lxi5gSDkMLwm6uYJG2evxnKAhU,10228
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=O9QjF5SR2WT754taT5lKGrOVPQ2kbOV9tvdndGhzLQc,1099
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
@@ -26,7 +26,7 @@ ORForise/Tools/FGENESB/FGENESB.py,sha256=TCvsGzfZ41tKkgF6TaBFpsuZBrueSygmoBco7d6
26
26
  ORForise/Tools/FGENESB/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
27
  ORForise/Tools/FragGeneScan/FragGeneScan.py,sha256=l3lqIxRUEx7lIV8Odhm6NsTgfHTrriYXcFoA4WW-E-E,1376
28
28
  ORForise/Tools/FragGeneScan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
- ORForise/Tools/GFF/GFF.py,sha256=hGM-5q6fSUPxO6uzGMD3kZjghJ6CSLRrrkvsAVcQfbU,1894
29
+ ORForise/Tools/GFF/GFF.py,sha256=RF-PtryGTV0Lgz6sT7L5idVEwCF_MP0prIcfaUYCoAQ,2806
30
30
  ORForise/Tools/GFF/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
31
  ORForise/Tools/GLIMMER_3/GLIMMER_3.py,sha256=9WQNSdlhQOpHQ4zcxncrTb2Lt6tiUB8Y0FBoyGxG_Yc,1723
32
32
  ORForise/Tools/GLIMMER_3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -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
- ORForise-1.4.1.dist-info/LICENSE,sha256=eAL1bBUjSMCdvudcn9E3sbujCBCa839cqXxauONDbSU,32476
64
- ORForise-1.4.1.dist-info/METADATA,sha256=_4BvUb4v2rjpDUIJ5is03NpYnh-P_ooQy89GE97gfKk,36457
65
- ORForise-1.4.1.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
66
- ORForise-1.4.1.dist-info/entry_points.txt,sha256=ss2cbLmljRmLIeZ3t48p_06NuQuRiKeA11IOUYg_uiY,246
67
- ORForise-1.4.1.dist-info/top_level.txt,sha256=7kmFicUFY65FJmioc0cpZtXVz93V7KSKvZVWpGz5Hyk,9
68
- ORForise-1.4.1.dist-info/RECORD,,
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,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.40.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5