def todot(file, args): """ Create a graphviz dot file from an orca workflow. """ try: config = OrcaConfig.create(file, args) printer = DotfileHandler() printer.handle(config) except OrcaError as e: log.error(e)
def test_print_switch_task(self): run_handler('switch.yaml', DotfileHandler())
def test_print_par_task(self): run_handler('par.yaml', DotfileHandler())
def test_print_for_task(self): run_handler('for_with_variable.yaml', DotfileHandler())