Skip to content

Commit

Permalink
Fix typo in GenotypeContig error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Donaim committed Nov 6, 2023
1 parent 758f671 commit e7b9cf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion micall/core/contig_stitcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class GenotypedContig(Contig):

def __add__(self, other):
if self.ref_name != other.ref_name:
raise ValueError("Cannot concatenate contigs that do not belong the they same reference")
raise ValueError("Cannot concatenate contigs that do not belong the same reference")

assert self.ref_seq == other.ref_seq, "References that are named the same must be the same sequence"

Expand Down

0 comments on commit e7b9cf1

Please sign in to comment.