Merge branch 'master' into 1932-job-output-persistent
[arvados.git] / doc / user / tutorials / tutorial-new-pipeline.html.textile.liquid
index d218c3b9a4f2b44f34fa2446f53533964b89c4e9..6852886523e9556ffec96cb477fbaeff9095b24a 100644 (file)
@@ -43,7 +43,8 @@ Next, create a file that contains the pipeline definition:
           "dataclass": "Collection"
         }
       },
-      "script_version":"<b>you</b>:master"
+      "script_version":"<b>you</b>:master",
+      "output_is_persistent":false
     },
     "filter":{
       "script":"0-filter.py",
@@ -52,7 +53,8 @@ Next, create a file that contains the pipeline definition:
           "output_of":"do_hash"
         }
       },
-      "script_version":"<b>you</b>:master"
+      "script_version":"<b>you</b>:master",
+      "output_is_persistent":true
     }
   }
 }
@@ -60,7 +62,7 @@ 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 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: