Skip to content
Snippets Groups Projects
Commit 5e4af1cb authored by Mattia Mancini's avatar Mattia Mancini
Browse files

Make the fix for the station adder optional

parent 3f267d1b
Branches
No related tags found
1 merge request!2Make the fix for the station adder optional
...@@ -5,6 +5,8 @@ label: compress_pipeline ...@@ -5,6 +5,8 @@ label: compress_pipeline
inputs: inputs:
- id: flag_autocorrelation - id: flag_autocorrelation
type: boolean? type: boolean?
- id: is_long_baseline
type: boolean?
- id: msin - id: msin
type: Directory type: Directory
outputs: outputs:
...@@ -35,6 +37,8 @@ steps: ...@@ -35,6 +37,8 @@ steps:
in: in:
- id: msin - id: msin
source: msin source: msin
- id: is_long_baseline
source: is_long_baseline
out: out:
- issue_list - issue_list
- msout - msout
......
...@@ -6,6 +6,8 @@ inputs: ...@@ -6,6 +6,8 @@ inputs:
type: boolean? type: boolean?
- id: surls - id: surls
type: 'string[]' type: 'string[]'
- id: is_long_baseline
type: boolean
outputs: outputs:
- id: compressed - id: compressed
outputSource: outputSource:
...@@ -48,6 +50,8 @@ steps: ...@@ -48,6 +50,8 @@ steps:
source: fetch_data/uncompressed source: fetch_data/uncompressed
- id: flag_autocorrelation - id: flag_autocorrelation
source: flag_autocorrelation source: flag_autocorrelation
- id: is_long_baseline
source: is_long_baseline
scatter: scatter:
- msin - msin
out: out:
......
id: identify_issues id: identify_issues
label: Identify Known issues label: Identify Known issues
class: CommandLineTool class: CommandLineTool
cwlVersion: v1.0 cwlVersion: v1.2
hints: hints:
- class: DockerRequirement - class: DockerRequirement
dockerPull: git.astron.nl:5000/ldv/ldv-images/lofar-legacy:latest dockerPull: git.astron.nl:5000/ldv/ldv-images/lofar-legacy:latest
...@@ -12,7 +12,11 @@ inputs: ...@@ -12,7 +12,11 @@ inputs:
type: Directory type: Directory
inputBinding: inputBinding:
position: 1 position: 1
- id: is_long_baseline
type: boolean?
inputBinding:
position: 2
prefix: '--is_long_baseline'
outputs: outputs:
- id: issue_list - id: issue_list
type: string[] type: string[]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment