A human donor of any biosample, including cell lines. Submission of any sample originating from a human donor requires submission of information about the relevant donor. For example, submission of the donor of K562 is a prerequisite for submission of any K562 cell line samples.
| Name | Type | Description | Notes |
|---|---|---|---|
| is_on_anvil | bool | Indicates whether the data object has been submitted to AnVIL. | [optional] |
| preview_timestamp | str | The date the object was previewed. | [optional] |
| release_timestamp | str | The date the object was released. | [optional] |
| taxa | str | The species of the organism. | [optional] |
| publications | List[str] | The publications associated with this object. | [optional] |
| url | str | An external resource with additional information. | [optional] |
| documents | List[str] | Documents that provide additional information (not data file). | [optional] |
| lab | str | Lab associated with the submission. | [optional] |
| award | str | Grant associated with the submission. | [optional] |
| accession | str | A unique identifier to be used to reference the object prefixed with IGVF. | [optional] |
| alternate_accessions | List[str] | Accessions previously assigned to objects that have been merged with this object. | [optional] |
| collections | List[str] | Some samples are part of particular data collections. | [optional] |
| status | str | The status of the metadata object. | [optional] |
| revoke_detail | str | Explanation of why an object was transitioned to the revoked status. | [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] |
| dbxrefs | List[str] | Identifiers from external resources that may have 1-to-1 or 1-to-many relationships with IGVF donors. | [optional] |
| sex | str | Sex of the donor. | [optional] |
| virtual | bool | Virtual donors are not representing actual human or model organism donors, samples coming from which were used in experiments, but rather capturing metadata about hypothetical donors that the reported analysis results are relevant for. | [optional] |
| supersedes | List[str] | The donor(s) that this donor supersedes by virtue of being newer, better, or a fixed version of etc. than the one(s) it supersedes. | [optional] |
| related_donors | List[RelatedDonor] | Familial relations of this donor. | [optional] |
| ethnicities | List[str] | Ethnicity of the donor. | [optional] |
| human_donor_identifiers | List[str] | Identifiers of this human donor. | [optional] |
| id | str | [optional] | |
| type | List[str] | [optional] | |
| summary | str | A summary of the human donor. | [optional] |
| superseded_by | List[str] | Donor(s) this donor is superseded by virtue of those donor(s) being newer, better, or a fixed version of etc. than this one. | [optional] |
from igvf_client.models.human_donor import HumanDonor
# TODO update the JSON string below
json = "{}"
# create an instance of HumanDonor from a JSON string
human_donor_instance = HumanDonor.from_json(json)
# print the JSON string representation of the object
print(HumanDonor.to_json())
# convert the object into a dict
human_donor_dict = human_donor_instance.to_dict()
# create an instance of HumanDonor from a dict
human_donor_from_dict = HumanDonor.from_dict(human_donor_dict)