Skip to content

Commit

Permalink
Fix layout_unitigs
Browse files Browse the repository at this point in the history
Shouldn't this code block look like this?
  • Loading branch information
EdHarry authored Mar 29, 2021
1 parent 8b1e2dc commit e6e3c77
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions layout_unitigs.py
Original file line number Diff line number Diff line change
Expand Up @@ -678,11 +678,11 @@ def insert(assignment, seed_scaffolds):
total_max = score_fow
orientation = 'fow'
pos = i
else:
if score_rev > total_max:
total_max = score_rev
orientation = 'rev'
pos = i
else:
if score_rev > total_max:
total_max = score_rev
orientation = 'rev'
pos = i

if total_max != -1:
#print contig
Expand Down

0 comments on commit e6e3c77

Please sign in to comment.