Skip to content

Latest commit

 

History

History
63 lines (54 loc) · 5.58 KB

File metadata and controls

63 lines (54 loc) · 5.58 KB

Treatment

A protein or chemical treatment applied to samples such as lipopolysaccharide, interleukin-2, or leucine.

Properties

Name Type Description Notes
release_timestamp str The date the object was released. [optional]
lab str Lab associated with the submission. [optional]
award str Grant associated with the submission. [optional]
sources List[str] The originating lab(s) or vendor(s). [optional]
lot_id str The lot identifier provided by the originating lab or vendor. [optional]
product_id str The product identifier provided by the originating lab or vendor. [optional]
documents List[str] Documents that describe the treatment protocol details. [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]
amount float Specific quantity of the applied treatment (used in conjunction with amount_units). [optional]
amount_units str A unit for an amount other than those for time or temperature. [optional]
duration float Duration indicates the time elapsed between the start and end of the treatment. [optional]
duration_units str A unit of time. [optional]
p_h float Final pH of the solution containing a chemical compound (if applicable) [optional]
purpose str The intended purpose for treating the samples; Activation: treatment is known to activate a pathway in the biosample; Agonist: a substance which is known to initiate a physiological response when combined with a receptor; Antagonist: a substance that is known to interfere with or inhibits the physiological action of another; Control: treatment applied to a sample for control purposes; Differentiation: treatment that is applied to convert a less specialized cell to a more specialized cell; De-differentiation: treatment used to reprogram differentiated cells back to less determined cell states; Perturbation: treatment applied to the sample in order to study the effect of its application; Selection: treatment used to affect biosample in a way that can be used to distinguish cells and select for in the downstream steps; Stimulation: treatment applied to stimulate a cellular pathway. [optional]
post_treatment_time float Post treatment time in conjunction with post treatment time units is used to specify the time that has passed between the point when biosamples were removed from the treatment solution before being sampled or treated with the next treatment. [optional]
post_treatment_time_units str A unit of time. [optional]
temperature float The temperature in Celsius to which the sample was exposed [optional]
temperature_units str A unit of temperature. [optional]
treatment_type str The classification of treatment agent that specifies its exact molecular nature. Chemical type refers to (natural or synthetic) organic/inorganic compounds and also includes drugs, while protein type is restricted to active protein biomolecules that are naturally or artifically synthesized via cellular translation mechanism of converting DNA into a protein. Environmental type referes to other external conditions that directly influence biological processes or reactions within a given environment. Example of chemical type: lactate, ethanol,hydrocortisone, LPS etc. Example of protein type: Interferons, interlukin, antibodies, etc. Example of chemical type: stiffness. [optional]
treatment_term_id str Ontology identifier describing a component in the treatment. [optional]
treatment_term_name str Ontology term describing a component in the treatment that is the principal component affecting the biosample being treated. Examples: interferon gamma, interleukin-4, Fibroblast growth factor 2, 20-hydroxyecdysone, 5-bromouridine etc. [optional]
depletion bool Treatment is depleted. [optional]
id str [optional]
type List[str] [optional]
summary str [optional]
biosamples_treated List[str] The samples which have been treated using this treatment. [optional]

Example

from igvf_client.models.treatment import Treatment

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

# convert the object into a dict
treatment_dict = treatment_instance.to_dict()
# create an instance of Treatment from a dict
treatment_from_dict = Treatment.from_dict(treatment_dict)

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