Skip to content

Commit

Permalink
version bump to v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Psy-Fer committed Jun 14, 2022
1 parent 479eaaf commit 04cbe2d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tools/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ def pod52slow5(args):

def main():

VERSION = "v0.0.2"

parser = MyParser(description="Converter - SLOW5 <-> POD5 converter",
epilog="Citation:...",
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
Expand All @@ -165,6 +167,9 @@ def main():
s2p.add_argument("input")
s2p.add_argument("output", type=Path)

parser.add_argument("-v", "--version", action='version', version="SLOW5 <-> POD5 converter version: {}".format(VERSION),
help="Prints version")

args = parser.parse_args()

if len(sys.argv) == 1:
Expand Down

0 comments on commit 04cbe2d

Please sign in to comment.