Skip to content

Latest commit

 

History

History
56 lines (47 loc) · 3.24 KB

File metadata and controls

56 lines (47 loc) · 3.24 KB

Workflow

A workflow for computational analysis of genomic data. A workflow is made up of analysis steps.

Properties

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]
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]
name str The preferred viewable name of the workflow. [optional]
source_url str An external resource to the code base of the workflow in github. [optional]
workflow_repositories List[str] Resources hosting the workflow. [optional]
standards_page str A link to a page describing the standards for this workflow. [optional]
workflow_version int The version of this workflow. [optional]
id str [optional]
type List[str] [optional]
summary str A summary of the object. [optional]
analysis_steps List[str] The analysis steps which are part of this workflow. [optional]

Example

from igvf_client.models.workflow import Workflow

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

# convert the object into a dict
workflow_dict = workflow_instance.to_dict()
# create an instance of Workflow from a dict
workflow_from_dict = Workflow.from_dict(workflow_dict)

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