Skip to content

Latest commit

 

History

History
54 lines (45 loc) · 3.24 KB

File metadata and controls

54 lines (45 loc) · 3.24 KB

AssayTerm

An ontology term from Ontology of Biomedical Investigations (OBI) for assays.

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 an assay. [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]
preferred_assay_titles List[str] The custom lab preferred labels that this assay term may be associated with. [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]
assay_slims List[str] A broad categorization of the assay term. [optional]
category_slims List[str] The type of feature or interaction measured by the assay. [optional]
objective_slims List[str] The purpose of the assay. [optional]

Example

from igvf_client.models.assay_term import AssayTerm

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

# convert the object into a dict
assay_term_dict = assay_term_instance.to_dict()
# create an instance of AssayTerm from a dict
assay_term_from_dict = AssayTerm.from_dict(assay_term_dict)

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