Skip to content
Snippets Groups Projects
Commit 16c08484 authored by George Marchment's avatar George Marchment
Browse files

update cli

parent 10df745e
No related branches found
No related tags found
No related merge requests found
import click import click
from src.nextflow_file import Nextflow_File from src.workflow import Workflow
@click.command() @click.command()
...@@ -36,7 +36,7 @@ def cli(main_workflow_path, render_graphs: bool, **kwargs): ...@@ -36,7 +36,7 @@ def cli(main_workflow_path, render_graphs: bool, **kwargs):
in folders with eponymous names. in folders with eponymous names.
""" """
w = Nextflow_File(address=main_workflow_path, **kwargs) w = Workflow(address=main_workflow_path, **kwargs)
w.initialise() w.initialise()
w.generate_all_graphs(render_graphs=render_graphs) w.generate_all_graphs(render_graphs=render_graphs)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment