diff --git a/steps/GenericParsetGeneratorStep.cwl b/steps/GenericParsetGeneratorStep.cwl index c902a5e1a98aff318af534a4f529ed635f3e1936..fc7ce6da615068e4a5b49b2162190c62f9a4f5b4 100644 --- a/steps/GenericParsetGeneratorStep.cwl +++ b/steps/GenericParsetGeneratorStep.cwl @@ -1,21 +1,22 @@ -cwlVersion: 1.1 class: CommandLineTool -baseCommand: [python, '-c'] +cwlVersion: v1.0 +id: GenericParsetGeneratorStep +baseCommand: [python, -c, 'import sys; print(sys.argv)'] inputs: - step_name: - type: string - doc: "name of the DPPP step" + - id: step_name + type: string + doc: "name of the DPPP step" - step_type: - type: string - doc: "type of the DPPP step" + - id: step_type + type: string + doc: "type of the DPPP step" - step_arguments: - type: array<string> - doc: "List of key=value parameters to pass" + - id: step_arguments + type: array<string> + doc: "List of key=value parameters to pass" outputs: - output_file: - type: File - doc: "Parset output file" + - id: output_file + type: File + doc: "Parset output file"