From 17e86bf8ad9bdc7852fdd19754de132e77ff47f1 Mon Sep 17 00:00:00 2001 From: "ivan.kondov" <ivan.kondov@kit.edu> Date: Thu, 18 Feb 2021 16:00:25 +0100 Subject: [PATCH] small formatting changes and typo corrections --- docs/advanced.rst | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/advanced.rst b/docs/advanced.rst index 13596d7..5f17cd3 100644 --- a/docs/advanced.rst +++ b/docs/advanced.rst @@ -258,8 +258,8 @@ Building up a workflow as you go Very often in a research project one does not know the workflow final structure at the beginning. In FireWorks one can extend exiting workflows on the LaunchPad -duting their whole lifetime, i.e. it does not matter whether the workflow has -been just added, is running or completed. An simple example for extending a +during their whole lifetime, i.e. it does not matter whether the workflow has +been just added, is running or completed. A simple example for extending a workflow is given in __ Exercise 4: Extending a workflow __. Here, the example shows how a workflow with a single Firework performing a structure relaxation can be exteded with a Firework performing normal mode analysis:: @@ -267,19 +267,19 @@ relaxation can be exteded with a Firework performing normal mode analysis:: cd inputs lpad add -c water-turbomole_relax.yaml lpad get_wflows -q '{"name": "H2O normal modes - extend as you go"}' -:: + # output: state: READY name: H2O normal modes - extend as you go--2906 created_on": 2021-02-18T14:39:54.065000 states_list: REA - + cd ../launches qlaunch -q ../config/qadapter_fh2_turbomole.yaml -w ../config/fworker_fh2_turbomole.yaml singleshot -After the job has been completed: +After the job has been completed:: lpad -o yaml get_wflows -q '{"name": "H2O normal modes - extend as you go"}' -:: + # output created_on: '2021-02-18T14:39:54.065000' name: H2O normal modes - extend as you go--2906 state: COMPLETED @@ -291,7 +291,7 @@ from the workflow:: cd ../inputs lpad append_wflow -i 2906 -f water-turbomole_freqs.yaml lpad -o yaml get_wflows -q '{"name": "H2O normal modes - extend as you go"}' -:: + # output: name: H2O normal modes - extend as you go--2906 state: RUNNING states_list: C-REA @@ -299,6 +299,7 @@ from the workflow:: cd ../launches qlaunch -q ../config/qadapter_fh2_turbomole.yaml -w ../config/fworker_fh2_turbomole.yaml singleshot lpad -o yaml get_wflows -q '{"name": "H2O normal modes - extend as you go"}' + # output: created_on: '2021-02-18T14:39:54.065000' name: H2O normal modes - extend as you go--2906 state: COMPLETED -- GitLab