ORForise 1.4.0__py3-none-any.whl → 1.4.2__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.
@@ -16,12 +16,8 @@ except ImportError:
16
16
  ##########################
17
17
 
18
18
  def comparator(options):
19
- genome_Seq = ""
20
- with open(options.genome_DNA, 'r') as genome:
21
- for line in genome:
22
- line = line.replace("\n", "")
23
- if not line.startswith('>'):
24
- genome_Seq += str(line)
19
+ with open(options.genome_DNA, mode='r') as genome:
20
+ genome_Seq = "".join(line.rstrip() for line in genome if not line.startswith('>'))
25
21
  ##############################################
26
22
  if not options.reference_tool: # IF using Ensembl for comparison
27
23
  ref_genes = collections.OrderedDict() # Order is important
@@ -76,11 +72,11 @@ def comparator(options):
76
72
  rep_metric_description = list(all_rep_Metrics.keys())
77
73
  rep_metrics = list(all_rep_Metrics.values())
78
74
  ############## Printing to std-out and optional csv file
79
- print('Genome Used: ' + str(options.reference_annotation.split('/')[-1]))
75
+ print('Genome Used: ' + str(options.genome_DNA.split('/')[-1]))
80
76
  if options.reference_tool:
81
77
  print('Reference Tool Used: '+str(options.reference_tool))
82
78
  else:
83
- print('Reference Used: ' + str(options.reference_annotation))
79
+ print('Reference Used: ' + str(options.reference_annotation.split('/')[-1]))
84
80
  print('Tool Compared: '+str(options.tool))
85
81
  print('Perfect Matches: ' + str(len(perfect_Matches)) + ' [' + str(len(ref_genes))+ '] - '+ format(100 * len(perfect_Matches)/len(ref_genes),'.2f')+'%')
86
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
@@ -1,5 +1,4 @@
1
1
  import numpy as np
2
-
3
2
  try:
4
3
  from utils import *
5
4
  except ImportError:
@@ -46,14 +45,32 @@ comp = comparator()
46
45
  # else:
47
46
  # print ('Key not found')
48
47
 
49
-
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])
48
+ def is_double_range(range1, range2):
49
+ return len(range1) >= 2 * len(range2)
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
@@ -263,6 +280,9 @@ def tool_comparison(ref_genes, orfs, genome, verbose):
263
280
  comp.genome_Seq = genome
264
281
  comp.genome_Seq_Rev = revCompIterative(genome)
265
282
  comp.genome_Size = len(genome)
283
+
284
+ better_pos_orfs_items = [[(int(pos.split(',')[0]), int(pos.split(',')[1])), orf_Details] for pos, orf_Details in orfs.items()] #TODO: turn pos into tuple instead of string everywhere
285
+
266
286
  for gene_num, gene_details in ref_genes.items(): # Loop through each gene to compare against predicted ORFs
267
287
  g_Start = int(gene_details[0])
268
288
  g_Stop = int(gene_details[1])
@@ -273,9 +293,8 @@ def tool_comparison(ref_genes, orfs, genome, verbose):
273
293
  overlapping_ORFs = collections.OrderedDict()
274
294
  perfect_Match = False
275
295
  out_Frame = False
276
- for pos, orf_Details in orfs.items(): # Check if perfect match, if not check if match covers at least 75% of gene - Loop through ALL ORFs - SLOW
277
- o_Start = int(pos.split(',')[0])
278
- o_Stop = int(pos.split(',')[1])
296
+ for pos, orf_Details in better_pos_orfs_items: # Check if perfect match, if not check if match covers at least 75% of gene - Loop through ALL ORFs - SLOW
297
+ o_Start,o_Stop = pos
279
298
  o_Strand = orf_Details[0]
280
299
  #orf_Set = set(range(o_Start, o_Stop + 1)) Removed for optimisation
281
300
  if o_Stop <= g_Start or o_Start >= g_Stop: # Not caught up yet
@@ -283,15 +302,17 @@ def tool_comparison(ref_genes, orfs, genome, verbose):
283
302
  elif o_Start == g_Start and o_Stop == g_Stop: # If perfect match, break and skip the rest of the ORFs
284
303
  perfect_Match = True
285
304
  break
305
+ elif is_double_range(range(o_Start, o_Stop), range(g_Start,g_Stop)): # If ORF is double or more than the length of the gene, we do not count as found.
306
+ continue
286
307
  elif g_Start <= o_Start < g_Stop or g_Start < o_Stop < g_Stop: # If ORF Start or Stop is between gene Start or Stop
287
308
  #overlap = len(gene_Set.intersection(orf_Set)) # Replaced for optimisation
288
309
  overlap = max(min(o_Stop, g_Stop) - max(o_Start, g_Start), -1) + 1
289
310
  coverage = 100 * float(overlap) / float(len(gene_Set))
290
311
  orf_Details.append(coverage)
291
312
  if abs(o_Stop - g_Stop) % 3 == 0 and o_Strand == g_Strand and coverage >= MIN_COVERAGE: # Only continue if ORF covers at least 75% of the gene and is in frame
292
- overlapping_ORFs.update({pos: orf_Details})
313
+ overlapping_ORFs.update({f'{o_Start},{o_Stop}': orf_Details})
293
314
  elif coverage >= MIN_COVERAGE: # Not in frame / on same strand
294
- comp.out_Of_Frame_ORFs.update({pos: orf_Details})
315
+ comp.out_Of_Frame_ORFs.update({f'{o_Start},{o_Stop}': orf_Details})
295
316
  out_Frame = True
296
317
  elif o_Start <= g_Start and o_Stop >= g_Stop: # If ORF extends one or both ends of the gene
297
318
  #overlap = len(gene_Set.intersection(orf_Set)) # Replaced for optimisation
@@ -299,9 +320,9 @@ def tool_comparison(ref_genes, orfs, genome, verbose):
299
320
  coverage = 100 * float(overlap) / float(len(gene_Set))
300
321
  orf_Details.append(coverage)
301
322
  if abs(o_Stop - g_Stop) % 3 == 0 and o_Strand == g_Strand and coverage >= MIN_COVERAGE: # Only continue if ORF covers at least 75% of the gene and is in frame
302
- overlapping_ORFs.update({pos: orf_Details})
323
+ overlapping_ORFs.update({f'{o_Start},{o_Stop}': orf_Details})
303
324
  elif coverage >= MIN_COVERAGE:
304
- comp.out_Of_Frame_ORFs.update({pos: orf_Details})
325
+ comp.out_Of_Frame_ORFs.update({f'{o_Start},{o_Stop}': orf_Details})
305
326
  out_Frame = True
306
327
  else:
307
328
  if verbose == True:
@@ -319,8 +340,8 @@ def tool_comparison(ref_genes, orfs, genome, verbose):
319
340
  comp.genes_Detected.update({str(gene_details): g_pos})
320
341
  match_Statistics(o_Start, o_Stop, g_Start, g_Stop, g_Strand)
321
342
  perfect_Matched_Genes(g_Start, g_Stop, g_Strand)
322
- if verbose == True:
323
- print('Perfect Match')
343
+ #if verbose == True:
344
+ # print('Perfect Match')
324
345
  elif perfect_Match == False and len(
325
346
  overlapping_ORFs) == 1: # If we do not have a perfect match but 1 ORF which has passed the filtering
326
347
  orf_Pos = list(overlapping_ORFs.keys())[0]
@@ -340,8 +361,8 @@ def tool_comparison(ref_genes, orfs, genome, verbose):
340
361
  comp.matched_ORFs.update({orf_Pos: m_ORF_Details})
341
362
  comp.genes_Detected.update({str(gene_details): orf_Pos})
342
363
  match_Statistics(o_Start, o_Stop, g_Start, g_Stop, g_Strand)
343
- if verbose == True:
344
- print('Partial Match')
364
+ #if verbose == True:
365
+ # print('Partial Match')
345
366
  partial_Hit_Calc(g_Start, g_Stop, g_Strand, o_Start, o_Stop)
346
367
  elif perfect_Match == False and len(
347
368
  overlapping_ORFs) >= 1: # If we have more than 1 potential ORF match, we check to see which is the 'best' hit
@@ -370,8 +391,8 @@ def tool_comparison(ref_genes, orfs, genome, verbose):
370
391
  genes_Unmatched(g_Start, g_Stop, g_Strand) #
371
392
  else:
372
393
  genes_Unmatched(g_Start, g_Stop, g_Strand) # No hit
373
- if verbose == True:
374
- print("No Hit")
394
+ #if verbose == True:
395
+ # print("No Hit")
375
396
  for orf_Key in comp.matched_ORFs: # Remove ORFs from out of frame if ORF was correctly matched to another Gene
376
397
  if orf_Key in comp.out_Of_Frame_ORFs:
377
398
  del comp.out_Of_Frame_ORFs[orf_Key]
@@ -391,9 +412,9 @@ def tool_comparison(ref_genes, orfs, genome, verbose):
391
412
  atg_P, gtg_P, ttg_P, att_P, ctg_P, other_Start_P, other_Starts = start_Codon_Count(orfs)
392
413
  tag_P, taa_P, tga_P, other_Stop_P, other_Stops = stop_Codon_Count(orfs)
393
414
  # Count nucleotides found from ALL ORFs
394
- gene_Nuc_Array = np.zeros((comp.genome_Size), dtype=np.int)
395
- orf_Nuc_Array = np.zeros((comp.genome_Size), dtype=np.int)
396
- matched_ORF_Nuc_Array = np.zeros((comp.genome_Size), dtype=np.int)
415
+ gene_Nuc_Array = np.zeros((comp.genome_Size), dtype=np.bool)
416
+ orf_Nuc_Array = np.zeros((comp.genome_Size), dtype=np.bool)
417
+ matched_ORF_Nuc_Array = np.zeros((comp.genome_Size), dtype=np.bool)
397
418
 
398
419
  prev_Gene_Stop = 0
399
420
  prev_Gene_Overlapped = False
@@ -401,10 +422,11 @@ def tool_comparison(ref_genes, orfs, genome, verbose):
401
422
  g_Start = int(gene_details[0])
402
423
  g_Stop = int(gene_details[1])
403
424
  g_Strand = gene_details[2]
404
- gene_Length = (g_Stop - g_Start)
425
+ gene_Length = (g_Stop - g_Start) +1
426
+ if gene_Length == 0: print(g_Start, g_Stop, "!!!!!!!!!!!!!!!!!!!!!!!!")
405
427
  comp.gene_Lengths.append(gene_Length)
406
- gene_Nuc_Array[g_Start - 1:g_Stop] = [1] # Changing all between the two positions to 1's
407
- comp.gene_GC.append(nuc_Count(g_Start, g_Stop, g_Strand))
428
+ gene_Nuc_Array[g_Start - 1:g_Stop] = True # Changing all between the two positions to 1's
429
+ comp.gene_GC.append(nuc_Count(verbose, g_Start, g_Stop, g_Strand))
408
430
  if gene_Length <= SHORT_ORF_LENGTH: # .utils
409
431
  comp.gene_Short.append(gene_Length)
410
432
  ### Calculate overlapping Genes -
@@ -445,10 +467,10 @@ def tool_comparison(ref_genes, orfs, genome, verbose):
445
467
  comp.pos_Strand += 1
446
468
  elif o_Strand == "-":
447
469
  comp.neg_Strand += 1
448
- orf_Length = (o_Stop - o_Start)
470
+ orf_Length = (o_Stop - o_Start) +1
449
471
  comp.orf_Lengths.append(orf_Length)
450
- orf_Nuc_Array[o_Start - 1:o_Stop] = [1] # Changing all between the two positions to 1's
451
- comp.orf_GC.append(nuc_Count(o_Start, o_Stop, o_Strand))
472
+ orf_Nuc_Array[o_Start - 1:o_Stop] = True # Changing all between the two positions to 1's
473
+ comp.orf_GC.append(nuc_Count(verbose, o_Start, o_Stop, o_Strand))
452
474
  if orf_Length <= SHORT_ORF_LENGTH: # .utils
453
475
  comp.orf_Short.append(orf_Length)
454
476
  ### Calculate overlapping ORFs -
@@ -480,9 +502,9 @@ def tool_comparison(ref_genes, orfs, genome, verbose):
480
502
  mo_Stop = int(mo_Positions.split(',')[1])
481
503
  mo_Strand = m_ORF_Details[0]
482
504
  mo_Length = (mo_Stop - mo_Start)
483
- matched_ORF_Nuc_Array[mo_Start - 1:mo_Stop] = [1] # This is the complete matched orf not the matched orf bits
505
+ matched_ORF_Nuc_Array[mo_Start - 1:mo_Stop] = True # This is the complete matched orf not the matched orf bits
484
506
 
485
- comp.m_ORF_GC.append(nuc_Count(mo_Start, mo_Stop, mo_Strand))
507
+ comp.m_ORF_GC.append(nuc_Count(verbose, mo_Start, mo_Stop, mo_Strand))
486
508
  if mo_Length <= SHORT_ORF_LENGTH: # .utils
487
509
  comp.m_ORF_Short.append(mo_Length)
488
510
  ### Calculate overlapping Matched ORFs -
@@ -506,30 +528,28 @@ def tool_comparison(ref_genes, orfs, genome, verbose):
506
528
  elif '-' in mo_Strand:
507
529
  comp.m_ORF_Neg_Olap.append(0)
508
530
  ####
509
- gene_Coverage_Genome = format(100 * np.count_nonzero(gene_Nuc_Array) / comp.genome_Size, '.2f')
510
- orf_Coverage_Genome = format(100 * np.count_nonzero(orf_Nuc_Array) / comp.genome_Size, '.2f')
511
- matched_ORF_Coverage_Genome = format(100 * np.count_nonzero(matched_ORF_Nuc_Array) / comp.genome_Size,
531
+ gene_Coverage_Genome = format(100 * np.sum(gene_Nuc_Array) / comp.genome_Size, '.2f')
532
+ orf_Coverage_Genome = format(100 * np.sum(orf_Nuc_Array) / comp.genome_Size, '.2f')
533
+ matched_ORF_Coverage_Genome = format(100 * np.sum(matched_ORF_Nuc_Array) / comp.genome_Size,
512
534
  '.2f') # This gets the nts which are in matched ORFs - Check below
513
535
  # matched_ORF_Nuc_AND_Gene = np.logical_and(matched_ORF_Nuc_Array,gene_Nuc_Array) + [0 for i in range(len(gene_Nuc_Array))] # This gets the nts which are in both matched ORFs and detected genes
514
536
  # matched_ORF_Coverage_Genome = format(100 * np.count_nonzero(matched_ORF_Nuc_AND_Gene) / comp.genome_Size,'.2f')
515
537
 
516
538
  # gene and orf nucleotide Intersection
517
- gene_ORF_Nuc_Intersection = np.count_nonzero(gene_Nuc_Array & orf_Nuc_Array)
539
+ gene_ORF_Nuc_Intersection = np.sum(gene_Nuc_Array & orf_Nuc_Array)
518
540
  # not gene but orf nucleotides
519
- not_Gene_Nuc_Array = np.logical_not(gene_Nuc_Array) + [0 for i in range(
520
- len(gene_Nuc_Array))] # End part to keep array as 1,0 not T,F
521
- not_Gene_Nuc_And_ORF_Count = np.count_nonzero(not_Gene_Nuc_Array & orf_Nuc_Array)
541
+ not_Gene_Nuc_Array = np.logical_not(gene_Nuc_Array)
542
+ not_Gene_Nuc_And_ORF_Count = np.sum(not_Gene_Nuc_Array & orf_Nuc_Array)
522
543
  # not orf nucleotides but gene
523
- not_ORF_Nuc_Array = np.logical_not(orf_Nuc_Array) + [0 for i in range(
524
- len(orf_Nuc_Array))] # End part to keep array as 1,0 not T,F
525
- not_ORF_Nuc_And_Gene_Count = np.count_nonzero(not_ORF_Nuc_Array & gene_Nuc_Array)
544
+ not_ORF_Nuc_Array = np.logical_not(orf_Nuc_Array)
545
+ not_ORF_Nuc_And_Gene_Count = np.sum(not_ORF_Nuc_Array & gene_Nuc_Array)
526
546
  # not gene or orf nucleotides
527
- not_Gene_Nuc_Not_ORF_Nuc_Count = np.count_nonzero(not_Gene_Nuc_Array & not_ORF_Nuc_Array)
547
+ not_Gene_Nuc_Not_ORF_Nuc_Count = np.sum(not_Gene_Nuc_Array & not_ORF_Nuc_Array)
528
548
  # Nucleotide 'accuracy' - Normalised by number of nucelotides annotated by a gene
529
- NT_TP = format(gene_ORF_Nuc_Intersection / np.count_nonzero(gene_Nuc_Array), '.2f')
530
- NT_FP = format(not_Gene_Nuc_And_ORF_Count / np.count_nonzero(not_Gene_Nuc_Array), '.2f')
531
- NT_FN = format(not_ORF_Nuc_And_Gene_Count / np.count_nonzero(gene_Nuc_Array), '.2f')
532
- NT_TN = format(not_Gene_Nuc_Not_ORF_Nuc_Count / np.count_nonzero(not_Gene_Nuc_Array), '.2f')
549
+ NT_TP = format(gene_ORF_Nuc_Intersection / np.sum(gene_Nuc_Array), '.2f')
550
+ NT_FP = format(not_Gene_Nuc_And_ORF_Count / np.sum(not_Gene_Nuc_Array), '.2f')
551
+ NT_FN = format(not_ORF_Nuc_And_Gene_Count / np.sum(gene_Nuc_Array), '.2f')
552
+ NT_TN = format(not_Gene_Nuc_Not_ORF_Nuc_Count / np.sum(not_Gene_Nuc_Array), '.2f')
533
553
  NT_Precision = format(gene_ORF_Nuc_Intersection / (gene_ORF_Nuc_Intersection + not_Gene_Nuc_And_ORF_Count), '.2f')
534
554
  NT_Recall = format(gene_ORF_Nuc_Intersection / (gene_ORF_Nuc_Intersection + not_ORF_Nuc_And_Gene_Count), '.2f')
535
555
  NT_False_Discovery_Rate = format(
ORForise/GFF_Adder.py CHANGED
@@ -30,8 +30,6 @@ def gff_writer(options,genome_ID, genome_DNA, reference_annotation, reference_to
30
30
 
31
31
  for pos, data in combined_ORFs.items():
32
32
  pos_ = pos.split(',')
33
- if '15040' in pos:
34
- print(2)
35
33
  start = pos_[0]
36
34
  stop = pos_[-1]
37
35
  strand = data[0]
ORForise/StORForise.py CHANGED
@@ -11,7 +11,7 @@ from Comparator import tool_comparison
11
11
 
12
12
  def comparator(tool, input_to_analyse, storfs_to_find_missing, genome_to_compare):
13
13
  genome_Seq = ""
14
- with open('Genomes/' + genome_to_compare + '.fa', 'r') as genome:
14
+ with open(genome_to_compare, 'r') as genome:
15
15
  for line in genome:
16
16
  line = line.replace("\n", "")
17
17
  if ">" not in line:
@@ -19,23 +19,23 @@ def comparator(tool, input_to_analyse, storfs_to_find_missing, genome_to_compare
19
19
  ##############################################
20
20
  genes = collections.OrderedDict()
21
21
  count = 0
22
- with open('Tools/StORF_Undetected/' + input_to_analyse, 'r') as genome_gff: # Get list of missed genes
22
+ with open(input_to_analyse, 'r') as genome_gff: # Get list of missed genes
23
23
  for line in genome_gff:
24
24
  if ">" in line:
25
25
  line = line.strip()
26
- Start = int(line.split('_')[1])
27
- Stop = int(line.split('_')[2])
28
- Strand = line.split('_')[3]
29
- Gene = str(Start) + ',' + str(Stop) + ',' + Strand
30
- genes.update({count: Gene})
26
+ start = int(line.split('_')[1])
27
+ stop = int(line.split('_')[2])
28
+ strand = line.split('_')[3]
29
+ gene_details = [start,stop,strand]
30
+ genes.update({count: gene_details})
31
31
  count += 1
32
32
  ##################################
33
33
  tool_predictions = import_module('Tools.' + tool + '.' + tool)
34
34
  tool_predictions = getattr(tool_predictions, tool)
35
35
  orfs = tool_predictions(storfs_to_find_missing, genome_Seq)
36
- all_Metrics, all_rep_Metrics, start_precision, stop_precision, other_starts, other_stops, missed_genes, unmatched_orfs, undetected_gene_metrics, unmatched_orf_metrics, gene_coverage_genome, multi_Matched_ORFs, partial_Hits = tool_comparison(
37
- genes, orfs, genome_Seq)
38
- outname = tool + '_' + genome_to_compare
36
+ all_Metrics, all_rep_Metrics, start_precision, stop_precision, other_starts, other_stops, perfect_Matches, missed_genes, unmatched_orfs, undetected_gene_metrics, unmatched_orf_metrics, orf_Coverage_Genome, matched_ORF_Coverage_Genome, gene_coverage_genome, multi_Matched_ORFs, partial_Hits = tool_comparison(
37
+ genes, orfs, genome_Seq,True)
38
+ outname = tool + '_' + genome_to_compare.split('/')[-1].split('.')[0]
39
39
  metric_description = list(all_Metrics.keys())
40
40
  metrics = list(all_Metrics.values())
41
41
  rep_metric_description = list(all_rep_Metrics.keys())
ORForise/Tools/GFF/GFF.py CHANGED
@@ -11,7 +11,7 @@ except ImportError:
11
11
  def GFF(*args):
12
12
  tool_pred = args[0]
13
13
  genome = args[1]
14
- types = args[2]
14
+ #types = args[2]
15
15
  GFF_ORFs = collections.OrderedDict()
16
16
  genome_size = len(genome)
17
17
  genome_rev = revCompIterative(genome)
@@ -19,21 +19,39 @@ def GFF(*args):
19
19
  for line in gff_input:
20
20
  if '#' not in line:
21
21
  line = line.split('\t')
22
- gene_types = types.split(',')
23
- if any(gene_type == line[2] for gene_type in gene_types)and len(line) == 9: # line[2] for normalrun
22
+ #gene_types = types.split(',') - Temporary fix
23
+ #if any(gene_type == line[2] for gene_type in gene_types) and len(line) == 9: # line[2] for normalrun
24
+ if 'CDS' in line[2] and len(line) == 9:
24
25
  start = int(line[3])
25
26
  stop = int(line[4])
26
27
  strand = line[6]
27
28
  info = line[8]
28
- #name = line[8].split('Name=')[1].split(';')[0] # Issue with multiple records for each gene.
29
- if '-' in strand: # Reverse Compliment starts and stops adjusted
30
- r_start = genome_size - stop
31
- r_stop = genome_size - start
32
- startCodon = genome_rev[r_start:r_start + 3]
33
- stopCodon = genome_rev[r_stop - 2:r_stop + 1]
34
- elif '+' in strand:
35
- startCodon = genome[start - 1:start + 2]
36
- 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]
37
55
  po = str(start) + ',' + str(stop)
38
56
  orf = [strand, startCodon, stopCodon, line[2],info] # This needs to detect the type
39
57
  GFF_ORFs.update({po: orf})
@@ -14,12 +14,13 @@ def StORF_Reporter(tool_pred, genome):
14
14
  genome_rev = revCompIterative(genome)
15
15
  with open(tool_pred, 'r') as storf_input:
16
16
  for line in storf_input:
17
- if '#' not in line:
17
+ if not line.startswith('#') and not line.startswith('\n'):
18
18
  line = line.split()
19
- if 'StORF_Reporter' in line[1] or 'StoRF_Reporter' in line[1]: # need to harmonise this.
19
+ if 'StORF_Reporter' in line[1] or 'StoRF_Reporter' in line[1] or 'StORF' in line[1] or 'StORF-Reporter' in line[1]: # need to harmonise this.
20
20
  start = int(line[3])
21
21
  stop = int(line[4])
22
22
  strand = line[6]
23
+ info = line[8]
23
24
  if '-' in strand: # Reverse Compliment starts and stops adjusted
24
25
  r_start = genome_size - stop
25
26
  r_stop = genome_size - start
@@ -29,7 +30,7 @@ def StORF_Reporter(tool_pred, genome):
29
30
  startCodon = genome[start:start + 3]
30
31
  stopCodon = genome[stop - 3:stop]
31
32
  po = str(start) + ',' + str(stop)
32
- orf = [strand, startCodon, stopCodon, line[2]] # StORF/Con-StORF or CDS??
33
+ orf = [strand, startCodon, stopCodon, 'CDS', info] # StORF/Con-StORF or CDS??
33
34
  storf_orfs.update({po: orf})
34
35
 
35
36
  storf_orfs = sortORFs(storf_orfs)
ORForise/utils.py CHANGED
@@ -4,22 +4,11 @@ import collections
4
4
  # Constants
5
5
  SHORT_ORF_LENGTH = 300
6
6
  MIN_COVERAGE = 75
7
- ORForise_Version = 'v1.4.0'
7
+ ORForise_Version = 'v1.4.2'
8
8
 
9
9
 
10
10
  def revCompIterative(watson): # Gets Reverse Complement
11
- complements = {'A': 'T', 'T': 'A', 'C': 'G', 'G': 'C', 'N': 'N',
12
- 'R': 'Y', 'Y': 'R', 'S': 'S', 'W': 'W', 'K': 'M',
13
- 'M': 'K', 'V': 'B', 'B': 'V', 'H': 'D', 'D': 'H'}
14
- watson = watson.upper()
15
- watsonrev = watson[::-1]
16
- crick = ""
17
- for nt in watsonrev:
18
- try:
19
- crick += complements[nt]
20
- except KeyError:
21
- crick += nt # Do not modify non-standard DNA
22
- return crick
11
+ return watson.upper()[::-1].translate(str.maketrans("ATCGRYKMVBHD","TAGCYRMKBVDH"))
23
12
 
24
13
 
25
14
  def sortORFs(tool_ORFs): # Will only sort by given start position
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ORForise
3
- Version: 1.4.0
3
+ Version: 1.4.2
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
@@ -21,7 +21,7 @@ Requires-Dist: numpy
21
21
 
22
22
  # Requirements and Installation:
23
23
 
24
- ### The ORForise platform is written in Python3.8 and only requires the NumPy library (should be installed automatically by pip when installing ORForise) which is standard in most base installations of Python3.
24
+ ### The ORForise platform is written in Python (3.6-3.9) and only requires the NumPy library (should be installed automatically by pip when installing ORForise) which is standard in most base installations of Python3.
25
25
 
26
26
  ## Intallation:
27
27
 
@@ -62,7 +62,7 @@ Please report any issues to: https://github.com/NickJD/ORForise/issues
62
62
  usage: Annotation_Compare.py [-h] -dna GENOME_DNA -ref REFERENCE_ANNOTATION -t TOOL -tp TOOL_PREDICTION
63
63
  [-rt REFERENCE_TOOL] [-o OUTNAME] [-v {True,False}]
64
64
 
65
- ORForise v1.4.0: Annotatione-Compare Run Parameters.
65
+ ORForise v1.4.2: Annotatione-Compare Run Parameters.
66
66
 
67
67
  Required Arguments:
68
68
  -dna GENOME_DNA Genome DNA file (.fa) which both annotations are based on
@@ -112,7 +112,7 @@ Please report any issues to: https://github.com/NickJD/ORForise/issues
112
112
  usage: Aggregate_Compare.py [-h] -dna GENOME_DNA -t TOOLS -tp TOOL_PREDICTIONS -ref REFERENCE_ANNOTATION
113
113
  [-rt REFERENCE_TOOL] [-o OUTNAME] [-v {True,False}]
114
114
 
115
- ORForise v1.4.0: Aggregate-Compare Run Parameters.
115
+ ORForise v1.4.2: Aggregate-Compare Run Parameters.
116
116
 
117
117
  Required Arguments:
118
118
  -dna GENOME_DNA Genome DNA file (.fa) which both annotations are based on
@@ -266,7 +266,7 @@ Please report any issues to: https://github.com/NickJD/ORForise/issues
266
266
  usage: GFF_Adder.py [-h] -dna GENOME_DNA -ref REFERENCE_ANNOTATION -at ADDITIONAL_TOOL -add ADDITIONAL_ANNOTATION -o
267
267
  OUTPUT_FILE [-rt REFERENCE_TOOL] [-gi GENE_IDENT] [-gene_ident GENE_IDENT] [-olap OVERLAP]
268
268
 
269
- ORForise v1.4.0: GFF-Adder Run Parameters.
269
+ ORForise v1.4.2: GFF-Adder Run Parameters.
270
270
 
271
271
  Required Arguments:
272
272
  -dna GENOME_DNA Genome DNA file (.fa) which both annotations are based on
@@ -328,7 +328,7 @@ Please report any issues to: https://github.com/NickJD/ORForise/issues
328
328
  usage: GFF_Intersector.py [-h] -dna GENOME_DNA -ref REFERENCE_ANNOTATION -at ADDITIONAL_TOOL -add
329
329
  ADDITIONAL_ANNOTATION -o OUTPUT_FILE [-rt REFERENCE_TOOL] [-gi GENE_IDENT] [-cov COVERAGE]
330
330
 
331
- ORForise v1.4.0: GFF-Intersector Run Parameters.
331
+ ORForise v1.4.2: GFF-Intersector Run Parameters.
332
332
 
333
333
  Required Arguments:
334
334
  -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=boAW-kWgY9lUobkj5nhK1JKLowtxXNuMg_2oCiKEBqU,10298
3
- ORForise/Comparator.py,sha256=7AYy5UxxTMpK51pR49U8MoX-j7XlAhUP_Sp7HSMoVSY,43921
4
- ORForise/GFF_Adder.py,sha256=IdEDlRBl2gv2ie7cyQ_Kq51GUipRleUSPjMfLO6OBQE,14105
2
+ ORForise/Annotation_Compare.py,sha256=6y_RiJg0q9g4Bcwy8Lxi5gSDkMLwm6uYJG2evxnKAhU,10228
3
+ ORForise/Comparator.py,sha256=AEpZQ8IURgYrWLKRRQEBUp3nFWKsxTb0f3O6XdHfRAc,45041
4
+ ORForise/GFF_Adder.py,sha256=-BlF6DQWcbhyYT88M0ZkoaWA2YDDxsby-7jksfeJN1Q,14057
5
5
  ORForise/GFF_Intersector.py,sha256=EcDKyJr_47066kma2CguMf3uwzB2tYomPDFjmoX8IoU,9900
6
- ORForise/StORForise.py,sha256=BjZ0Qr4_8uOWtKZ3llZlitYevW4eX0TIjCgtBUpl4gQ,5387
6
+ ORForise/StORForise.py,sha256=2QU6q3wPK6iqtyKg2jEVwFTB4bSymyc-mSpk7T8yNaY,5431
7
7
  ORForise/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
- ORForise/utils.py,sha256=pa4qb2uMxS9zm4wh3vQgWmy63k5GsZbaPPSTzotcFdw,1465
8
+ ORForise/utils.py,sha256=BeYOERE3UfBXpazmLDOQDzXj-bGbXd9oooWyPC1Ts1s,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=IGePhSnfxXs6_31UsbyZ3buiAZOaTG70Js6g0Scnaqo,1818
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
@@ -50,7 +50,7 @@ ORForise/Tools/Prodigal/Prodigal.py,sha256=8-MJrEbhSL4sbNjI1JEUZ1jm5PRz9OUBdlyD8
50
50
  ORForise/Tools/Prodigal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
51
  ORForise/Tools/Prokka/Prokka.py,sha256=akq0lu2TbOqLt-GI27a0Zbh8yfJIVAHBi07FtCfCAcY,1537
52
52
  ORForise/Tools/Prokka/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
- ORForise/Tools/StORF_Reporter/StORF_Reporter.py,sha256=QBYdDTO166iQlUdfogIJQ9bA_20qt8QLXPGw6d-Jan4,1477
53
+ ORForise/Tools/StORF_Reporter/StORF_Reporter.py,sha256=mljwJO1iNy1HxcuqHAqH5ODDuLomw9HcRwOEJDScNQc,1609
54
54
  ORForise/Tools/StORF_Reporter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
55
  ORForise/Tools/StORF_Undetected/StORF_Undetected.py,sha256=B7f9AxXD6j2ip4QtuOi7pwtfBCxkexE0XiDCJrKSX5U,1318
56
56
  ORForise/Tools/StORF_Undetected/__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.0.dist-info/LICENSE,sha256=eAL1bBUjSMCdvudcn9E3sbujCBCa839cqXxauONDbSU,32476
64
- ORForise-1.4.0.dist-info/METADATA,sha256=382JS9al3W80Jn82YH3gxxdOS1piBSzmihVy8TxsLfw,36450
65
- ORForise-1.4.0.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
66
- ORForise-1.4.0.dist-info/entry_points.txt,sha256=ss2cbLmljRmLIeZ3t48p_06NuQuRiKeA11IOUYg_uiY,246
67
- ORForise-1.4.0.dist-info/top_level.txt,sha256=7kmFicUFY65FJmioc0cpZtXVz93V7KSKvZVWpGz5Hyk,9
68
- ORForise-1.4.0.dist-info/RECORD,,
63
+ ORForise-1.4.2.dist-info/LICENSE,sha256=eAL1bBUjSMCdvudcn9E3sbujCBCa839cqXxauONDbSU,32476
64
+ ORForise-1.4.2.dist-info/METADATA,sha256=kv8pem6rn0yrjNtc9Gkm-RZvWsafVx866aCjUIdti5c,36457
65
+ ORForise-1.4.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
66
+ ORForise-1.4.2.dist-info/entry_points.txt,sha256=ss2cbLmljRmLIeZ3t48p_06NuQuRiKeA11IOUYg_uiY,246
67
+ ORForise-1.4.2.dist-info/top_level.txt,sha256=7kmFicUFY65FJmioc0cpZtXVz93V7KSKvZVWpGz5Hyk,9
68
+ ORForise-1.4.2.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.40.0)
2
+ Generator: bdist_wheel (0.43.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5