Skip to content

Commit

Permalink
fix opt args in dl
Browse files Browse the repository at this point in the history
  • Loading branch information
leonarDubois committed Jan 20, 2021
1 parent 9036d34 commit 58b5408
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panphlan_download_pangenome.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def read_params():
required = p.add_argument_group('required arguments')
required.add_argument('-i','--input_name', type = str, default = None,
help='Name of species to download', required=True)
required.add_argument('-o', '--output', type = str, default = ".",
p.add_argument('-o', '--output', type = str, default = ".",
help='output location', required=True)
p.add_argument('-v', '--verbose', action='store_true',
help='Show progress information')
Expand Down

0 comments on commit 58b5408

Please sign in to comment.