Skip to content

Commit

Permalink
Default ddf things to None
Browse files Browse the repository at this point in the history
  • Loading branch information
Frits Sweijen committed Aug 19, 2023
1 parent 93b74be commit 520988f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runners/create_ms_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@ def __init__(self, mspath: str, prefac_h5parm: str, ddf_solsdir: str):
vlbiparser = parser.add_argument_group('== lofar-vlbi specific settings ==')
vlbiparser.add_argument('--vlbi', action='store_true', default=False, help='Triggers alternate mode to generate a config file for the lofar-vlbi pipeline.')
vlbiparser.add_argument('--solset', type=cwl_file, default='', help='Path to the final LINC target solution file (usually cal_solutions.h5).')
vlbiparser.add_argument('--ddf_solsdir', type=cwl_file, default='', help='Path to where ddf-pipeline solutions can be found (usually SOLSDIR).')
vlbiparser.add_argument('--ddf_solsdir', type=cwl_dir, default=None, help='Path to where ddf-pipeline solutions can be found (usually SOLSDIR).')
vlbiparser.add_argument('--delay_calibrator', type=cwl_file, default='', help='A delay calibrator catalogue in CSV format.')
vlbiparser.add_argument('--ddf_solset', type=cwl_file, default='', help='The solution tables generated by the DDF pipeline in an HDF5 format.')
vlbiparser.add_argument('--ddf_solset', type=cwl_file, default=None, help='The solution tables generated by the DDF pipeline in an HDF5 format.')
vlbiparser.add_argument('--configfile', type=cwl_file, default='', help='Settings for the delay calibration in delay_solve.')
vlbiparser.add_argument('--h5merger', type=cwl_dir, default='', help='Path to the lofar_helpers repository.')
vlbiparser.add_argument('--facetselfcal', type=cwl_dir, default='', help='Path to facetselfcal repository.')
Expand Down

0 comments on commit 520988f

Please sign in to comment.