Skip to content

Commit

Permalink
quick update
Browse files Browse the repository at this point in the history
  • Loading branch information
y9c committed Aug 18, 2022
1 parent 597057c commit be260ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyensembl/transcript.py
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ def sequence(self):
transcript_id = self.transcript_id
if transcript_id.startswith("ENS"):
transcript_id = transcript_id.rsplit(".", 1)[0]
return self.genome.transcript_sequences.get(self.transcript_id.rsplit(".", 1)[0])
return self.genome.transcript_sequences.get(transcript_id)

@memoized_property
def first_start_codon_spliced_offset(self):
Expand Down

0 comments on commit be260ff

Please sign in to comment.