A sample that is used as a medium to perform biological measurement without the intent to characterize the technical sample itself. For example, the solution in which RNA oligos binding experiments are performed.
| Name | Type | Description | Notes |
|---|---|---|---|
| release_timestamp | str | The date the object was released. | [optional] |
| publication_identifiers | List[str] | The publication identifiers that provide more information about the object. | [optional] |
| url | str | An external resource with additional information. | [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 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 PKB. | [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] |
| starting_amount | float | The initial quantity of samples obtained. | [optional] |
| starting_amount_units | str | The units used to quantify the amount of samples obtained. | [optional] |
| dbxrefs | List[str] | Biosample identifiers from external resources, such as Biosample database or Cellosaurus. | [optional] |
| date_obtained | str | The date the sample was harvested, dissected or created, depending on the type of the sample. | [optional] |
| sorted_from | str | Links to a larger sample from which this sample was obtained through sorting. | [optional] |
| sorted_from_detail | str | Detail for sample sorted into fractions capturing information about sorting. | [optional] |
| virtual | bool | Virtual samples are not representing actual physical entities from experiments, but rather capturing metadata about hypothetical samples that the reported analysis results are relevant for. | [optional] |
| construct_library_sets | List[str] | The construct library sets of vectors introduced to this sample prior to performing an assay. | [optional] |
| moi | float | The actual multiplicity of infection (MOI) for vectors introduced to this sample. At least one construct library set must be specified in order to specify MOI. This property should capture the actual MOI, and not the targeted MOI. | [optional] |
| nucleic_acid_delivery | str | Method of introduction of nucleic acid into the cell. | [optional] |
| time_post_library_delivery | float | The time that elapsed past the time-point when the construct library sets were introduced. | [optional] |
| time_post_library_delivery_units | str | The units of time that elapsed past the point when the construct library sets were introduced. | [optional] |
| protocols | List[str] | Links to the protocol(s) for preparing the samples on Protocols.io. | [optional] |
| sample_material | str | [optional] | |
| taxa | str | [optional] | |
| sample_terms | List[str] | Ontology terms identifying a technical sample. | [optional] |
| id | str | [optional] | |
| type | List[str] | [optional] | |
| summary | str | A summary of this sample. | [optional] |
| file_sets | List[str] | The file sets linked to this sample. | [optional] |
| multiplexed_in | List[str] | The multiplexed samples in which this sample is included. | [optional] |
| sorted_fractions | List[str] | The fractions into which this sample has been sorted. | [optional] |
| origin_of | List[str] | The samples which originate from this sample, such as through a process of cell differentiation. | [optional] |
| institutional_certificates | List[str] | The institutional certificates under which use of this sample is approved. | [optional] |
| classifications | List[str] | The general category of this type of sample. | [optional] |
from igvf_client.models.technical_sample import TechnicalSample
# TODO update the JSON string below
json = "{}"
# create an instance of TechnicalSample from a JSON string
technical_sample_instance = TechnicalSample.from_json(json)
# print the JSON string representation of the object
print(TechnicalSample.to_json())
# convert the object into a dict
technical_sample_dict = technical_sample_instance.to_dict()
# create an instance of TechnicalSample from a dict
technical_sample_from_dict = TechnicalSample.from_dict(technical_sample_dict)