Skip to content

Commit

Permalink
do not report desc file time in 'all' when '--only_pangenome' is used
Browse files Browse the repository at this point in the history
  • Loading branch information
Adelme Bazin committed Dec 15, 2021
1 parent b66eb58 commit 7d615f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.61
1.2.62
3 changes: 2 additions & 1 deletion ppanggolin/workflow/all.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ def launch(args):
logging.getLogger().info(f"Gathering RGP into spots took : {round(spot_time, 2)} seconds")
logging.getLogger().info(f"Predicting modules took : {round(mod_time, 2)} seconds")
logging.getLogger().info(f"Writing the pangenome data in HDF5 took : {round(writing_time, 2)} seconds")
logging.getLogger().info(f"Writing descriptive files for the pangenome took : {round(desc_time, 2)} seconds")
if not args.only_pangenome:
logging.getLogger().info(f"Writing descriptive files for the pangenome took : {round(desc_time, 2)} seconds")
printInfo(filename, content=True)


Expand Down

0 comments on commit 7d615f2

Please sign in to comment.