X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/127f1e032068d83365d783e8fe8cad5f0117638a..c67b7cfdb650039ef403d16bcd619f2c7dbe9fd6:/doc/user/tutorials/tutorial-new-pipeline.html.textile.liquid diff --git a/doc/user/tutorials/tutorial-new-pipeline.html.textile.liquid b/doc/user/tutorials/tutorial-new-pipeline.html.textile.liquid index a4bad5820d..fc98d01aa0 100644 --- a/doc/user/tutorials/tutorial-new-pipeline.html.textile.liquid +++ b/doc/user/tutorials/tutorial-new-pipeline.html.textile.liquid @@ -44,7 +44,8 @@ Next, create a file that contains the pipeline definition: } }, "repository":"you", - "script_version":"master" + "script_version":"master", + "output_is_persistent":false }, "filter":{ "script":"0-filter.py", @@ -54,7 +55,8 @@ Next, create a file that contains the pipeline definition: } }, "repository":"you", - "script_version":"master" + "script_version":"master", + "output_is_persistent":true } } } @@ -62,7 +64,7 @@ EOF -* @"output_of"@ indicates that the @input@ of the @do_hash@ component is connected to the @output@ of @filter@. This is a _dependency_. Arvados uses the dependencies between jobs to automatically determine the correct order to run the jobs. +* @"output_of"@ indicates that the @output@ of the @do_hash@ component should be used as the @"input"@ parameter for the @filter@ component. Arvados determines the correct order to run the jobs when such dependencies are present. Now, use @arv pipeline_template create@ tell Arvados about your pipeline template: @@ -72,4 +74,3 @@ Now, use @arv pipeline_template create@ tell Arvados about your pipeline templat Your new pipeline template will appear on the "Workbench %(rarr)→% Compute %(rarr)→% Pipeline templates":https://{{ site.arvados_workbench_host }}/pipeline_instances page. -