Skip to content

Commit

Permalink
pip install unicycler11
Browse files Browse the repository at this point in the history
  • Loading branch information
gbouras13 committed Sep 5, 2023
1 parent 3f827b6 commit 7a645f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plassembler/utils/input_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def check_dependencies():
process = sp.Popen(["unicycler", "--version"], stdout=sp.PIPE, stderr=sp.STDOUT)
unicycler_out, _ = process.communicate()
unicycler_out = unicycler_out.decode()
logger.info(unicycler_version)
logger.info(unicycler_out)
unicycler_version = unicycler_out.split(" ")[1]
# get rid of the "v"
logger.info(unicycler_version)
Expand Down

0 comments on commit 7a645f7

Please sign in to comment.