Skip to content

Commit

Permalink
move dir creation down a bit below comments
Browse files Browse the repository at this point in the history
just to avoid confusing myself, for my code is stark and
full of errors
  • Loading branch information
fedarko committed Oct 24, 2020
1 parent 97e2cef commit 12fc3df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion metagenomescope/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
Expand Down

0 comments on commit 12fc3df

Please sign in to comment.