Skip to content

Commit

Permalink
minor: spelling fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rohan-mammothbio authored Apr 17, 2024
1 parent 8099521 commit a305ca5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions palamedes/align.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,15 +202,15 @@ def generate_alignment(
reversed_alignment[1][::-1],
]
)
foward_alignment = Alignment(
forward_alignment = Alignment(
[reference_seq_record, alternate_seq_record],
forward_coordinates,
)

# score is not technically an attribute on the class
setattr(foward_alignment, "score", reversed_alignment.score)
setattr(forward_alignment, "score", reversed_alignment.score)

return foward_alignment
return forward_alignment


def generate_variant_blocks(alignment: Alignment) -> list[VariantBlock]:
Expand Down

0 comments on commit a305ca5

Please sign in to comment.