doc: tutorial-new-pipeline clarity.
[arvados.git] / doc / user / tutorials / tutorial-new-pipeline.html.textile.liquid
index a4bad5820d360ee1bf0a4328dfc69e0cacebafab..b0025c7176f1da1bc5684bb934396ead0cb08bae 100644 (file)
@@ -44,9 +44,10 @@ Next, create a file that contains the pipeline definition:
         }
       },
       "repository":"<b>you</b>",
-      "script_version":"master"
+      "script_version":"master",
+      "output_is_persistent":false
     },
-    "filter":{
+    "do_filter":{
       "script":"0-filter.py",
       "script_parameters":{
         "input":{
@@ -54,7 +55,8 @@ Next, create a file that contains the pipeline definition:
         }
       },
       "repository":"<b>you</b>",
-      "script_version":"master"
+      "script_version":"master",
+      "output_is_persistent":true
     }
   }
 }
@@ -62,14 +64,13 @@ EOF
 </span></code></pre>
 </notextile>
 
-* @"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 is connected to the @"input"@ of @do_filter@.  This is a _dependency_.  Arvados uses the dependencies between jobs to automatically determine the correct order to run the jobs.
 
-Now, use @arv pipeline_template create@ tell Arvados about your pipeline template:
+Now, use @arv pipeline_template create@ to register your pipeline template in Arvados:
 
 <notextile>
 <pre><code>~/<b>you</b>/crunch_scripts$ <span class="userinput">arv pipeline_template create --pipeline-template "$(cat ~/the_pipeline)"</span>
 </code></pre>
 </notextile>
 
-Your new pipeline template will appear on the "Workbench %(rarr)&rarr;% Compute %(rarr)&rarr;% Pipeline&nbsp;templates":https://{{ site.arvados_workbench_host }}/pipeline_instances page.
-
+Your new pipeline template will appear on the Workbench "Compute %(rarr)&rarr;% Pipeline&nbsp;templates":https://{{ site.arvados_workbench_host }}/pipeline_instances page.