Skip to content

Commit

Permalink
Merge branch 'notebook_additions' of https://github.com/puja-trivedi/…
Browse files Browse the repository at this point in the history
…models into notebook_additions
  • Loading branch information
Puja Trivedi authored and Puja Trivedi committed Nov 1, 2023
2 parents 307e44f + f959a1a commit a0dec38
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions models_py-autogen/kbmodel.py
Original file line number Diff line number Diff line change
Expand Up @@ -3858,7 +3858,7 @@ class GeneAnnotation(Gene):
"""
molecular_type: Optional[BioType] = Field(None)
source_id: Optional[str] = Field(None, description="""The authority specific identifier.""")
referenced_in: str = Field(..., description="""The genome annotation that this gene annotation was referenced from.""")
referenced_in: Union[GenomeAnnotation, str] = Field(..., description="""The genome annotation that this gene annotation was referenced from.""")
symbol: Optional[str] = Field(None, description="""Symbol for a particular thing""")
xref: Optional[List[str]] = Field(default_factory=list, description="""A database cross reference or alternative identifier for a NamedThing or edge between two NamedThings. This property should point to a database record or webpage that supports the existence of the edge, or gives more detail about the edge. This property can be used on a node or edge to provide multiple URIs or CURIE cross references.""")
has_biological_sequence: Optional[str] = Field(None, description="""connects a genomic feature to its sequence""")
Expand Down Expand Up @@ -3974,10 +3974,10 @@ class GenomeAnnotation(Genome):
Location and nomenclature of genes and all of the coding regions in a genome assembly and the classification of genes and transcripts into types.
"""
version: Optional[str] = Field(None)
digest: Optional[List[str]] = Field(default_factory=list, description="""Stores checksum information.""")
digest: Optional[List[Union[Checksum, str]]] = Field(default_factory=list, description="""Stores checksum information.""")
content_url: Optional[List[str]] = Field(default_factory=list)
authority: Optional[AuthorityType] = Field(None, description="""The organization responsible for publishing the data.""")
reference_assembly: str = Field(..., description="""The reference genome assembly that this genome annotation was created from.""")
reference_assembly: Union[GenomeAssembly, str] = Field(..., description="""The reference genome assembly that this genome annotation was created from.""")
has_biological_sequence: Optional[str] = Field(None, description="""connects a genomic feature to its sequence""")
id: str = Field(..., description="""A unique identifier for an entity. Must be either a CURIE shorthand for a URI or a complete URI""")
in_taxon: Optional[List[str]] = Field(None, description="""connects an entity to its taxonomic classification. Only certain kinds of entities can be taxonomically classified; see 'thing with taxon'""")
Expand Down

0 comments on commit a0dec38

Please sign in to comment.