Skip to content

Commit

Permalink
Add print to check format_wf_steps
Browse files Browse the repository at this point in the history
  • Loading branch information
bebatut committed Sep 11, 2018
1 parent 5f47cb0 commit 3cafe96
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions planemo/training/tutorial.py
Expand Up @@ -27,6 +27,7 @@
save_to_yaml
)

from pprint import pprint

TUTO_HAND_ON_TEMPLATE = """---
layout: tutorial_hands_on
Expand Down Expand Up @@ -570,7 +571,11 @@ def format_wf_steps(wf, gi):
tool_desc = {'inputs': []}
# get formatted param description
paramlist = ''
print('format_wf_steps')
pprint(tool_desc)
pprint(wf_param_values)
for inp in tool_desc["inputs"]:
pprint(inp)
tool_inp = ToolInput(inp, wf_param_values, steps, 1, should_be_there=True)
paramlist += tool_inp.get_formatted_desc()
# format the hands-on box
Expand Down

0 comments on commit 3cafe96

Please sign in to comment.