Skip to content

CreateNextflowWithCustomInputAnalysis

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 NextflowAnalysisWithCustomInput

Example

from libica.openapi.v3.models.create_nextflow_with_custom_input_analysis import CreateNextflowWithCustomInputAnalysis

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

# convert the object into a dict
create_nextflow_with_custom_input_analysis_dict = create_nextflow_with_custom_input_analysis_instance.to_dict()
# create an instance of CreateNextflowWithCustomInputAnalysis from a dict
create_nextflow_with_custom_input_analysis_from_dict = CreateNextflowWithCustomInputAnalysis.from_dict(create_nextflow_with_custom_input_analysis_dict)

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