Skip to content

Commit

Permalink
Fix view transcript version page error if there was a gap
Browse files Browse the repository at this point in the history
  • Loading branch information
davmlaw committed Aug 9, 2023
1 parent 9fceeaa commit f299521
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion genes/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@ def cdna_match_diff(self) -> str:
match_summary = ", ".join(cdna_errors)
elif exons := self.genome_build_data.get("exons"):
gap_operations = Counter()
for (_, _, _, _, gap) in exons:
for _, _, _, _, _, gap in exons:
if gap:
for gap_op in gap.split():
code = gap_op[0]
Expand Down

0 comments on commit f299521

Please sign in to comment.