Skip to content
Snippets Groups Projects
Commit f4259d53 authored by Timo Millenaar's avatar Timo Millenaar
Browse files

Merge branch 'expose_elevation_for_parset' into 'v0.5.x'

Expose elevation for parset

See merge request !32
parents ad995a23 60e10967
No related branches found
No related tags found
2 merge requests!32Expose elevation for parset,!31Revert "Enable metadata compression"
Pipeline #116295 passed
...@@ -16,6 +16,8 @@ inputs: ...@@ -16,6 +16,8 @@ inputs:
type: boolean? type: boolean?
- id: msin - id: msin
type: Directory type: Directory
- id: flag_elevation
type: string?
outputs: outputs:
- id: inspect - id: inspect
...@@ -167,6 +169,8 @@ steps: ...@@ -167,6 +169,8 @@ steps:
source: flag_autocorrelation source: flag_autocorrelation
- id: is_raw - id: is_raw
source: identify_issues/is_raw source: identify_issues/is_raw
- id: flag_elevation
source: flag_elevation
run: steps/define_parset.cwl run: steps/define_parset.cwl
out: out:
- id: output - id: output
......
...@@ -17,6 +17,8 @@ inputs: ...@@ -17,6 +17,8 @@ inputs:
type: string[] type: string[]
- id: is_long_baseline - id: is_long_baseline
type: boolean? type: boolean?
- id: flag_elevation
type: string?
outputs: outputs:
- id: compressed - id: compressed
...@@ -67,6 +69,8 @@ steps: ...@@ -67,6 +69,8 @@ steps:
source: flag_autocorrelation source: flag_autocorrelation
- id: is_long_baseline - id: is_long_baseline
source: is_long_baseline source: is_long_baseline
- id: flag_elevation
source: flag_elevation
scatter: scatter:
- msin - msin
run: ./compress_pipeline.cwl run: ./compress_pipeline.cwl
......
...@@ -22,7 +22,7 @@ requirements: ...@@ -22,7 +22,7 @@ requirements:
aoflag.strategy=/usr/local/share/aoflagger/strategies/lofar-default.lua aoflag.strategy=/usr/local/share/aoflagger/strategies/lofar-default.lua
# #
flagelev.type=preflagger flagelev.type=preflagger
flagelev.elevation=0deg..20deg flagelev.elevation=$(inputs.flag_elevation)
# #
flagamp.amplmin=1e-30 flagamp.amplmin=1e-30
flagamp.type=preflagger flagamp.type=preflagger
...@@ -35,6 +35,9 @@ inputs: ...@@ -35,6 +35,9 @@ inputs:
- id: is_raw - id: is_raw
type: boolean type: boolean
default: true default: true
- id: flag_elevation
type: string
default: '0deg..20deg'
outputs: outputs:
- id: output - id: output
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment