Skip to content

Commit

Permalink
v5.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bastiaanvonmeijenfeldt committed Jan 15, 2021
1 parent 0512bf8 commit 046b6a0
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions CAT_pack/prepare.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,20 @@ def parse_arguments():
'files that do not exist yet.'))

optional = parser.add_argument_group('Optional arguments')
shared.add_argument(optional, 'database_folder', False,
default='./CAT_database.{0}'.format(date))
shared.add_argument(optional, 'taxonomy_folder', False,
default='./CAT_taxonomy.{0}'.format(date))
shared.add_argument(
optional,
'database_folder',
False,
default='./CAT_database.{0}'.format(date),
help_=('Name of folder to which database files will be written '
'(default: CAT_database.{date})'))
shared.add_argument(
optional,
'taxonomy_folder',
False,
default='./CAT_taxonomy.{0}'.format(date),
help_=('Name of folder to which taxonomy files will be downloaded '
'(default: CAT_taxonomy.{date})'))
shared.add_argument(optional, 'path_to_diamond', False, default='diamond')
shared.add_argument(optional, 'quiet', False)
shared.add_argument(optional, 'verbose', False)
Expand Down

0 comments on commit 046b6a0

Please sign in to comment.