Open Victoria-Samboco opened 1 year ago
Same as last time, if some keyword is missing, you can temporarily add it like so:
cabs:
wsclean:
inputs:
continue:
dtype: bool
Same as last time, if some keyword is missing, you can temporarily add it like so:
cabs: wsclean: inputs: continue: dtype: bool
yes, thats what I did here, like this, but it continues with the same error
cabs:
wsclean:
inputs:
wgridder-accuracy:
dtype: float
continue:
dtype: bool
Ah wait Field names must not be keywords: 'continue'
, that's a Python limitation we're hitting. I'll have to add a workaround to Stimela. In the meantime, try renaming it like so:
cabs:
wsclean:
inputs:
do_continue:
dtype: bool
nom_de_guerre: continue
...and use do_continue
in your params.
Ah wait
Field names must not be keywords: 'continue'
, that's a Python limitation we're hitting. I'll have to add a workaround to Stimela. In the meantime, try renaming it like so:cabs: wsclean: inputs: do_continue: dtype: bool nom_de_guerre: continue
...and use
do_continue
in your params.
Okay, its working now, thanks.
Hi @o-smirnov . There's a wsclean parameter called
-continue
that we can use to continue a previous deconvolution run, and -reuse-psf
and-reuse-dirty
to skip imaging of those two and directly clean existing images, but it does not work in stimela, I've added it to a cab as you recommended before for the-wgridder-accuracy
parameter but still returning an error:How I can deal with it?