An ontology term from Cell Ontology (CL), Cell Line Ontology (CLO), Experimental Factor Ontology (EFO), or Uber-anatomy ontology (UBERON) for biological or technical samples.
| 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 identifier describing a biological sample | [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] |
| dbxrefs | List[str] | Sample identifiers from external resources, such as Cellosaurus. | [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] |
| organ_slims | List[str] | Organs associated with the sample term. | [optional] |
| cell_slims | List[str] | Cells associated with the sample term. | [optional] |
| developmental_slims | List[str] | Developmental stages associated with the sample term. | [optional] |
| system_slims | List[str] | Organ systems associated with the sample term. | [optional] |
from igvf_client.models.sample_term import SampleTerm
# TODO update the JSON string below
json = "{}"
# create an instance of SampleTerm from a JSON string
sample_term_instance = SampleTerm.from_json(json)
# print the JSON string representation of the object
print(SampleTerm.to_json())
# convert the object into a dict
sample_term_dict = sample_term_instance.to_dict()
# create an instance of SampleTerm from a dict
sample_term_from_dict = SampleTerm.from_dict(sample_term_dict)