[docs]defparse_command_line_arguments(args):parser=argparse.ArgumentParser(description="Tool for building specification for applying trained generative ""model in Galaxy")parser.add_argument("-m","--ml_config_path",required=True,help="Path to the exported ml_config zip file with the trained model.")parser.add_argument("-e","--gen_example_count",required=True,help="Number of examples to generate.")parser.add_argument("-s","--sequence_length_report",choices=["True","False"],default="False",help="Whether to run the SequenceLengthDistribution report.")parser.add_argument("-q","--amino_acid_report",choices=["True","False"],default="False",help="Whether to run the AminoAcidFrequencyDistribution report.")parser.add_argument("-g","--gen_model_overview",choices=["True","False"],default="False",help="Whether to run the model report.")parser.add_argument("-o","--output_path",required=True,help="Output location for the generated yaml file (directory).")parser.add_argument("-f","--file_name",default="specs.yaml",help="Output file name for the yaml file. Default name is 'specs.yaml' if not specified.")returnparser.parse_args(args)