@@ -16,9 +16,18 @@ from src.workflow import Workflow
default=False,
is_flag=True,
help=''
'When processes and subworkflows are duplicated in the workflows by the \'include as\' option, '
'this option will duplicate the procedures in the graph output.',
'When processes and subworkflows are duplicated in the workflow by the \'include as\' option, '
'this option will duplicate the task in the graph output.',
)
@click.option(
'--processes-to-remove',
'processes_2_remove',
required=False,
help=''
'List of processes which are to be removed from the different structural representations (format "process1, process2, ...").',
)
@click.option(
'--render-graphs',
'render_graphs',
...
...
@@ -36,13 +45,13 @@ from src.workflow import Workflow
'authors',
required=False,
help=''
'Authors of workflow (format "author1, author2, ..."),'
'Authors of workflow (format "author1, author2, ..."),'
'extracted otherwise (in the case of a Git repo).',
)
@click.option('--keywords','keywords',required=False,help='Keywords of workflow (fomat "keyword1, keyword2, ..."), extracted otherwise (in the case of a Git repo).')
@click.option('--description','description',required=False,help='Description of workflow, extracted otherwise (in the case of a Git repo).')
@click.option('--date-published','datePublished',required=False,help='Publication date ("yyyy-mm-dd"), extracted otherwise (in the case of a Git repo).')
@click.option('--date-published','datePublished',required=False,help='Publication date (format "yyyy-mm-dd"), extracted otherwise (in the case of a Git repo).')
@click.option('--license','license',required=False,help='License of workflow, extracted otherwise (in the case of a Git repo).')
@click.option('--creative-work-status','creativeWorkStatus',required=False,help='Creative work status of workflow, extracted otherwise (in the case of a Git repo).')