@@ -777,29 +777,47 @@ def check_arguments(typ: str) -> None:
777
777
778
778
# if cwl is set, format the namespace for cwl and check that wdl options are not set on the command line
779
779
if cwl :
780
- parser .add_argument ("cwltool" , type = str , help = "CWL file to run." )
781
- parser .add_argument (
782
- "cwljob" ,
783
- nargs = "*" ,
784
- help = "Input file or CWL options. If CWL workflow takes an input, "
785
- "the name of the input can be used as an option. "
786
- 'For example: "%(prog)s workflow.cwl --file1 file". '
787
- "If an input has the same name as a Toil option, pass '--' before it." ,
788
- )
780
+ # So we can manually write out the help for this and the inputs
781
+ # file/workflow options in the argument parser description, we suppress
782
+ # help for this option.
783
+ parser .add_argument ("cwltool" , metavar = "WORKFLOW" , type = str , help = SUPPRESS )
784
+ # We also need a "cwljob" command line argument, holding possibly a
785
+ # positional input file and possibly a whole string of option flags
786
+ # only known to the workflow.
787
+ #
788
+ # We don't want to try and parse out the positional argument here
789
+ # since, on Python 3.12, we can grab what's really supposed to be an
790
+ # argument to a workflow-defined option.
791
+ #
792
+ # We don't want to use the undocumented argparse.REMAINDER, since that
793
+ # will eat any Toil-defined option flags after the first positional
794
+ # argument.
795
+ #
796
+ # So we just use parse_known_args and dump all unknown args into it,
797
+ # and manually write help text in the argparse description. So don't
798
+ # define it here.
789
799
check_arguments (typ = "cwl" )
790
800
791
801
# if wdl is set, format the namespace for wdl and check that cwl options are not set on the command line
792
802
if wdl :
793
803
parser .add_argument ("wdl_uri" , type = str , help = "WDL document URI" )
804
+ # We want to have an inputs_url that can be either a positional or a flag.
805
+ # We can't just have them share a single-item dest in Python 3.12;
806
+ # argparse does not guarantee that will work, and we can get the
807
+ # positional default value clobbering the flag. See
808
+ # <https://stackoverflow.com/a/60531838>.
809
+ # So we make them accumulate to the same list.
810
+ # Note that we will get a None in the list when there's no positional inputs.
794
811
parser .add_argument (
795
- "inputs_uri" , type = str , nargs = "? " , help = "WDL input JSON URI"
812
+ "inputs_uri" , type = str , nargs = '?' , action = "append " , help = "WDL input JSON URI"
796
813
)
797
814
parser .add_argument (
798
815
"--input" ,
799
816
"--inputs" ,
800
817
"-i" ,
801
818
dest = "inputs_uri" ,
802
819
type = str ,
820
+ action = "append" ,
803
821
help = "WDL input JSON URI" ,
804
822
)
805
823
check_arguments (typ = "wdl" )
0 commit comments