Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 2.85 KB

File metadata and controls

51 lines (42 loc) · 2.85 KB

Biomarker

A biomarker, such as a cell surface protein, that is measured, detected, or used for sample sorting based upon the biomarker's presence, absence, or quantification. For example, a CD19 positive biomarker that was detected in a sample.

Properties

Name Type Description Notes
release_timestamp str The date the object was released. [optional]
status str The status of the metadata object. [optional]
lab str Lab associated with the submission. [optional]
award str Grant associated with the submission. [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]
name str The biomarker name. [optional]
classification str Sample specific biomarker. [optional]
quantification str The biomarker association to the biosample, disease or other condition. This can be the absence of the biomarker or the presence of the biomarker in some low, intermediate or high quantity. [optional]
synonyms List[str] Alternate names for this biomarker. [optional]
gene str Biomarker gene. [optional]
id str [optional]
type List[str] [optional]
summary str A summary of the object. [optional]
name_quantification str A concatenation of the name and quantification of the biomarker. [optional]
biomarker_for List[str] The samples which have been confirmed to have this biomarker. [optional]

Example

from igvf_client.models.biomarker import Biomarker

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

# convert the object into a dict
biomarker_dict = biomarker_instance.to_dict()
# create an instance of Biomarker from a dict
biomarker_from_dict = Biomarker.from_dict(biomarker_dict)

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