Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry-Antipov committed Aug 17, 2024
1 parent 1a3affd commit f244f64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scripts/scaffolding/scaffold_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -834,8 +834,8 @@ def get_connections_porec(self, alignment_file, use_multimappers:bool):
self.logger.debug (f"Processed {ind} pore-c alignments")

arr = line.split()
first = int(arr[1])
second = int(arr[2])
first = arr[1]
second = arr[2]
first_coords = int(arr[4])
second_coords = int(arr[5])
if first > second:
Expand Down

0 comments on commit f244f64

Please sign in to comment.