Skip to content

Commit

Permalink
Use 1-indexing for exon numbers in convert coordinates
Browse files Browse the repository at this point in the history
  • Loading branch information
jarbesfeld committed Oct 3, 2024
1 parent 1eef358 commit 683fca2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -254,13 +254,13 @@ const GetCoordinates: React.FC = () => {
{genomicEnd != null ? renderRow("Genomic end", genomicEnd) : null}
{renderRow("Transcript", results.tx_ac)}
{txSegStart?.exon_ord != null
? renderRow("Exon start", txSegStart.exon_ord)
? renderRow("Exon start", txSegStart.exon_ord + 1)
: null}
{txSegStart?.offset != null
? renderRow("Exon start offset", txSegStart.offset)
: null}
{txSegEnd?.exon_ord != null
? renderRow("Exon end", txSegEnd.exon_ord)
? renderRow("Exon end", txSegEnd.exon_ord + 1)
: null}
{txSegEnd?.offset != null
? renderRow("Exon end offset", txSegEnd.offset)
Expand Down

0 comments on commit 683fca2

Please sign in to comment.