Skip to content

CreateNextflowAnalysis

Properties

Name Type Description Notes
user_reference str The user-reference of the analysis. This should be something meaningful for the user.
pipeline_id str The pipeline for which an analysis will be created.
tags CreateAnalysisTag [optional]
analysis_storage_id str The id of the storage to use for the analysis. [optional]
output_parent_folder_id str The id or the urn of the folder in which the output folder should be created. [optional]
analysis_output List[AnalysisOutputMapping] [optional]
analysis_input NextflowAnalysisInput
activation_code_detail_id str Indicates under which activation code the pipeline is executed. [optional]

Example

from libica.openapi.v3.models.create_nextflow_analysis import CreateNextflowAnalysis

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

# convert the object into a dict
create_nextflow_analysis_dict = create_nextflow_analysis_instance.to_dict()
# create an instance of CreateNextflowAnalysis from a dict
create_nextflow_analysis_from_dict = CreateNextflowAnalysis.from_dict(create_nextflow_analysis_dict)

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