Skip to content

Commit

Permalink
Merge 7fe9745 into b72b1b6
Browse files Browse the repository at this point in the history
  • Loading branch information
roksys committed Dec 20, 2019
2 parents b72b1b6 + 7fe9745 commit e0e771f
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions docs/userguide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,36 @@ analysis inputs, and start the workflow run.
myanalysis 1 2018-11-07T12:45:18 running 1/1
$ reana-client download results/plot.png
Running specific parts of analysis
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

*Serial*

Serial workflows can be executed partially until the step specified by the user.
To do so, you need to provide target step name as operational option for the
``reana-client start`` or ``reana-client run`` commands.

.. code-block:: console
$ reana-client start -w workflow.1 -o target='gendata'
# or
$ reana-client run -w workflow.1 -o target='gendata'
*CWL*

`CWL allows executing workflows partially <https://github.com/common-workflow-language/cwltool#running-only-part-of-a-workflow>`_.
To do so, you need to provide the specific target as an operational option for
the ``reana-client start``or ``reana-client run`` commands.

.. code-block:: console
$ reana-client start -w workflow.1 -o target='gendata'
# or
$ reana-client run -w workflow.1 -o target='gendata'
*Yadage*

Not implemented yet.

Downloading outputs
~~~~~~~~~~~~~~~~~~~
Expand Down

0 comments on commit e0e771f

Please sign in to comment.