4 title: "Writing a multi-step pipeline"
7 A pipeline in Arvados is a collection of crunch scripts, in which the output from one script may be used as the input to another script.
9 *This tutorial assumes that you are "logged into an Arvados VM instance":{{site.baseurl}}/user/getting_started/ssh-access.html#login, and have a "working environment.":{{site.baseurl}}/user/getting_started/check-environment.html*
11 This tutorial uses *@you@* to denote your username. Replace *@you@* with your user name in all the following examples.
13 h2. Create a new script
15 Our second script will filter the output of @hash.py@ and only include hashes that start with 0. Create a new script in <notextile><code>~/<b>you</b>/crunch_scripts/</code></notextile> called @0-filter.py@:
17 <notextile> {% code '0_filter_py' as python %} </notextile>
19 Now add it to your repository:
22 <pre><code>~/<b>you</b>/crunch_scripts$ <span class="userinput">chmod +x 0-filter.py</span>
23 ~/<b>you</b>/crunch_scripts$ <span class="userinput">git add 0-filter.py</span>
24 ~/<b>you</b>/crunch_scripts$ <span class="userinput">git commit -m"zero filter"</span>
25 ~/<b>you</b>/crunch_scripts$ <span class="userinput">git push origin master</span>
29 h2. Create a pipeline template
31 Next, create a file that contains the pipeline definition:
34 <pre><code>~/<b>you</b>/crunch_scripts$ <span class="userinput">cat >~/the_pipeline <<EOF
36 "name":"Filter MD5 hash values",
43 "dataclass": "Collection"
47 "script_version":"master",
48 "output_is_persistent":false
51 "script":"0-filter.py",
58 "script_version":"master",
59 "output_is_persistent":true
67 * @"output_of"@ indicates that the @output@ of the @do_hash@ component should be used as the @"input"@ of @do_filter@. Arvados uses these dependencies between jobs to automatically determine the correct order to run them.
69 (Your shell should automatically fill in @$USER@ with your login name. The JSON that gets saved should have @"repository"@ pointed at your personal Git repository.)
71 Now, use @arv pipeline_template create@ to register your pipeline template in Arvados:
74 <pre><code>~/<b>you</b>/crunch_scripts$ <span class="userinput">arv pipeline_template create --pipeline-template "$(cat ~/the_pipeline)"</span>
78 Your new pipeline template will appear on the Workbench "Compute %(rarr)→% Pipeline templates":https://{{ site.arvados_workbench_host }}/pipeline_instances page.
80 For more information and examples for writing pipelines, see the "pipeline template reference":{{site.baseurl}}/api/schema/PipelineTemplate.html