We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fe1cd0 commit 97c31c8Copy full SHA for 97c31c8
strAPI/repeats/models.py
@@ -39,7 +39,7 @@ class Transcript(SQLModel, table=True):
39
end: int = Field(nullable=False)
40
41
# one to many Gene -> Transcripts
42
- gene_id = Field(Integer, foreign_key ="genes.id")
+ gene_id: int = Field(Integer, foreign_key ="genes.id")
43
44
gene: "Gene" = Relationship(back_populates="transcripts")
45
0 commit comments