From 12fc3df8690aea1726a0c38937fb8ad1b76969b7 Mon Sep 17 00:00:00 2001 From: Marcus Fedarko Date: Sat, 24 Oct 2020 00:54:57 -0700 Subject: [PATCH] move dir creation down a bit below comments just to avoid confusing myself, for my code is stark and full of errors --- metagenomescope/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/metagenomescope/main.py b/metagenomescope/main.py index 7f9381c6..2b93a84d 100644 --- a/metagenomescope/main.py +++ b/metagenomescope/main.py @@ -72,7 +72,6 @@ def make_viz( asm_graph.layout() operation_msg("...Finished laying out the graph.", True) - arg_utils.create_output_dir(output_dir) # Immediate TODO: # -Compute graph layouts. For each component: # -Lay out individual patterns, starting at lowest level and moving up. @@ -89,6 +88,8 @@ def make_viz( # -Modify the JS to prepare the graph summary, etc. and get ready for # component drawing. Replace DB operations with just looking at the JSON. + arg_utils.create_output_dir(output_dir) + # TODO from here on down. # -Identify user-supplied bubbles. # -Identify user-supplied misc. patterns.