From 145f26b98506cb46a69f54b95ed6416fbf35d2e1 Mon Sep 17 00:00:00 2001 From: mancini <mancini@astron.nl> Date: Wed, 25 Sep 2019 11:12:52 +0200 Subject: [PATCH] Initial definition of a generic dppp parset step generation --- steps/GenericParsetGeneratorStep.cwl | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 steps/GenericParsetGeneratorStep.cwl diff --git a/steps/GenericParsetGeneratorStep.cwl b/steps/GenericParsetGeneratorStep.cwl new file mode 100644 index 00000000..c902a5e1 --- /dev/null +++ b/steps/GenericParsetGeneratorStep.cwl @@ -0,0 +1,21 @@ +cwlVersion: 1.1 +class: CommandLineTool +baseCommand: [python, '-c'] + +inputs: + step_name: + type: string + doc: "name of the DPPP step" + + step_type: + type: string + doc: "type of the DPPP step" + + step_arguments: + type: array<string> + doc: "List of key=value parameters to pass" + +outputs: + output_file: + type: File + doc: "Parset output file" -- GitLab