comparison resize_coordinate_window.py @ 3:9ba78e8985dc draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/resize_coordinate_window commit ad3846c086321d9bd604e974fd21323347b73470
author iuc
date Mon, 10 Jul 2017 11:47:19 -0400
parents 541f300f322d
children 4eb3cc1f8466
comparison
equal deleted inserted replaced
2:541f300f322d 3:9ba78e8985dc
7 7
8 8
9 def stop_err(msg): 9 def stop_err(msg):
10 sys.stderr.write(msg) 10 sys.stderr.write(msg)
11 sys.exit(1) 11 sys.exit(1)
12
12 13
13 parser = argparse.ArgumentParser() 14 parser = argparse.ArgumentParser()
14 parser.add_argument('--input', dest='input', help="Input dataset") 15 parser.add_argument('--input', dest='input', help="Input dataset")
15 parser.add_argument('--start_coordinate', dest='start_coordinate', type=int, help='Chromosome start coordinate, either 0 or 1.') 16 parser.add_argument('--start_coordinate', dest='start_coordinate', type=int, help='Chromosome start coordinate, either 0 or 1.')
16 parser.add_argument('--subtract_from_start', dest='subtract_from_start', type=int, help='Distance to subtract from start.') 17 parser.add_argument('--subtract_from_start', dest='subtract_from_start', type=int, help='Distance to subtract from start.')