Skip to content

Commit

Permalink
Update dandd_cmd.py
Browse files Browse the repository at this point in the history
update version number
  • Loading branch information
jessicabonnie authored Aug 22, 2023
1 parent 737736c commit 3054817
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/dandd_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def insert_pre_ext(filename, string):
return '.'.join(toks[:-1] + [string] + [toks[-1]])

def add_universal_cmds(subparser:argparse.ArgumentParser):
subparser.add_argument('--version', action='version', version='%(prog)s 0.2')
subparser.add_argument('--version', action='version', version='%(prog)s 1.0.0')
subparser.add_argument("--verbose", "-v", action="store_true", default=False, help="Print some trees and report steps of actions.")
subparser.add_argument( "--debug", action="store_true", default=False, dest="debug", help="Share command calls to 3rd party programs.")
subparser.add_argument( "--lowmem", action="store_true", default=False, dest="lowmem", help="Delete all multi-fasta sketches, while keeping cardinality stored in dictionary for later runs. Don't require sketch/db existence if the cardinality is already stored. Do not recommend using with --safe")
Expand Down Expand Up @@ -301,4 +301,4 @@ def parse_arguments():


# if __name__ == '__main__':
# sys.exit(main())
# sys.exit(main())

0 comments on commit 3054817

Please sign in to comment.