Skip to content
Snippets Groups Projects
Commit 607f6f77 authored by Jan David Mol's avatar Jan David Mol
Browse files

TMSS-64: Avoid outputing parset values when actually producing a dict

parent ba86b191
No related branches found
No related tags found
2 merge requests!422Resolve SW-961 "Fix pipelinecontrol",!400Resolve TMSS-64 "Pulsar pipeline"
......@@ -448,7 +448,7 @@ def _convert_to_parset_dict_for_preprocessing_pipeline_schema(subtask: models.Su
dppp_steps = []
if spec["preflagger0"]["enabled"]:
dppp_steps.append('preflagger[0]')
parset["Observation.ObservationControl.PythonControl.DPPP.preflagger[0].chan"] = "[%s]" % spec["preflagger0"]["channels"]
parset["Observation.ObservationControl.PythonControl.DPPP.preflagger[0].chan"] = spec["preflagger0"]["channels"].split(",")
parset["Observation.ObservationControl.PythonControl.DPPP.preflagger[0].abstime"] = []
parset["Observation.ObservationControl.PythonControl.DPPP.preflagger[0].azimuth"] = []
parset["Observation.ObservationControl.PythonControl.DPPP.preflagger[0].baseline"] = ""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment