comparison plot_smb_tiff.py @ 4:0ffa2fbc7546 draft default tip

planemo upload for repository https://github.com/rolfverberg/galaxytools commit 366e516aef0735af2998c6ff3af037181c8d5213-dirty
author rv43
date Mon, 20 Mar 2023 17:12:07 +0000
parents 6be076b081c4
children
comparison
equal deleted inserted replaced
3:6be076b081c4 4:0ffa2fbc7546
12 12
13 # Parse command line arguments 13 # Parse command line arguments
14 parser = argparse.ArgumentParser( 14 parser = argparse.ArgumentParser(
15 description='Plot an image for the SMB schema') 15 description='Plot an image for the SMB schema')
16 parser.add_argument('-o', '--output_file', 16 parser.add_argument('-o', '--output_file',
17 help='''Output file name.''') 17 required=True,
18 type=pathlib.Path,
19 help='''Full or relative path to the output file.''')
18 parser.add_argument('--cycle', 20 parser.add_argument('--cycle',
19 required=True, 21 required=True,
20 help='''Run cycle.''') 22 help='''Run cycle.''')
21 parser.add_argument('--station', 23 parser.add_argument('--station',
22 required=True, 24 required=True,