Skip to content

Commit

Permalink
Merge pull request #6 from heringerp/master
Browse files Browse the repository at this point in the history
Fix typo to ensure both handles are set correctly for creating edges
  • Loading branch information
chfi authored Dec 18, 2023
2 parents 6b0a807 + 8f8b32b commit 3ac575e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/conversion.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ where

for link in gfa.links.iter() {
let left = Handle::new(link.from_segment, link.from_orient);
let right = Handle::new(link.from_segment, link.from_orient);
let right = Handle::new(link.to_segment, link.to_orient);
graph.create_edge(Edge(left, right));
}

Expand Down

0 comments on commit 3ac575e

Please sign in to comment.