Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 3.09 KB

File metadata and controls

50 lines (41 loc) · 3.09 KB

PhenotypeTerm

An ontology term from Experimental Factor Ontology (EFO), Human Disease Ontology (DOID), Human Phenotype Ontology (HP), Mondo Disease Ontology (MONDO), National Cancer Institute Thesaurus (NCIT), or Ontology of Biological Attributes (OBA) for phenotypes, diseases, and traits.

Properties

Name Type Description Notes
release_timestamp str The date the object was released. [optional]
status str The status of the metadata object. [optional]
schema_version str The version of the JSON schema that the server uses to validate the object. [optional]
uuid str The unique identifier associated with every object. [optional]
notes str DACC internal notes. [optional]
aliases List[str] Lab specific identifiers to reference an object. [optional]
creation_timestamp str The date the object was created. [optional]
submitted_by str The user who submitted the object. [optional]
submitter_comment str Additional information specified by the submitter to be displayed as a comment on the portal. [optional]
description str A plain text description of the object. [optional]
term_id str An ontology term identifier describing a phenotype. [optional]
term_name str Ontology term describing a biological sample, assay, trait, or disease. [optional]
deprecated_ntr_terms List[str] A list of deprecated NTR terms previously associated with this ontology term. [optional]
is_a List[str] A list of ontology terms which are the nearest ancestor to this ontology term. [optional]
id str [optional]
type List[str] [optional]
summary str A summary of the ontology term. [optional]
name str A unique identifier for the ontology term, reformatted from the original term ID. [optional]
synonyms List[str] Synonyms for the term that have been recorded in an ontology. [optional]
ancestors List[str] List of term names of ontological terms that precede the given term in the ontological tree. These ancestor terms are typically more general ontological terms under which the term is classified. [optional]
ontology str The ontology in which the term is recorded. [optional]

Example

from igvf_client.models.phenotype_term import PhenotypeTerm

# TODO update the JSON string below
json = "{}"
# create an instance of PhenotypeTerm from a JSON string
phenotype_term_instance = PhenotypeTerm.from_json(json)
# print the JSON string representation of the object
print(PhenotypeTerm.to_json())

# convert the object into a dict
phenotype_term_dict = phenotype_term_instance.to_dict()
# create an instance of PhenotypeTerm from a dict
phenotype_term_from_dict = PhenotypeTerm.from_dict(phenotype_term_dict)

[Back to Model list] [Back to API list] [Back to README]