An ontology term from Experimental Factor Ontology (EFO) for platforms and instruments used in assays.
| 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 platform. | [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] |
| company | str | The company that developed and sells the instrument. | [optional] |
| sequencing_kits | List[str] | The available sequencing kits for this platform. | [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] |
from igvf_client.models.platform_term import PlatformTerm
# TODO update the JSON string below
json = "{}"
# create an instance of PlatformTerm from a JSON string
platform_term_instance = PlatformTerm.from_json(json)
# print the JSON string representation of the object
print(PlatformTerm.to_json())
# convert the object into a dict
platform_term_dict = platform_term_instance.to_dict()
# create an instance of PlatformTerm from a dict
platform_term_from_dict = PlatformTerm.from_dict(platform_term_dict)