Skip to content

Commit

Permalink
Added eGap version to logfile
Browse files Browse the repository at this point in the history
  • Loading branch information
felipelouza committed Feb 14, 2020
1 parent 9b8217e commit 02402e4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions eGap
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

import sys, time, argparse, subprocess, os.path, shutil, struct

Version = "v2.0"

Description = """Tool to build the BWT and optionally the LCP and DA array for a collection
of sequences in external memory. There are two different usages depending
on whether you already have the BWT of the input files:
Expand Down Expand Up @@ -80,6 +82,7 @@ def main():
with open(logfile_name,"w") as logfile:

print(">>> Begin computation",file=logfile)
print(">>> eGap version " + Version,file=logfile)
show_command_line(logfile)
logfile.flush()

Expand Down

0 comments on commit 02402e4

Please sign in to comment.