CreateNextflowJsonAnalysis
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] |
input_form_values |
NextflowJsonAnalysisInput |
|
|
Example
from libica.openapi.v3.models.create_nextflow_json_analysis import CreateNextflowJsonAnalysis
# TODO update the JSON string below
json = "{}"
# create an instance of CreateNextflowJsonAnalysis from a JSON string
create_nextflow_json_analysis_instance = CreateNextflowJsonAnalysis.from_json(json)
# print the JSON string representation of the object
print(CreateNextflowJsonAnalysis.to_json())
# convert the object into a dict
create_nextflow_json_analysis_dict = create_nextflow_json_analysis_instance.to_dict()
# create an instance of CreateNextflowJsonAnalysis from a dict
create_nextflow_json_analysis_from_dict = CreateNextflowJsonAnalysis.from_dict(create_nextflow_json_analysis_dict)
[Back to Model list] [Back to API list] [Back to README]