~/you/crunch_scripts$ cat >~/the_pipeline <<EOF
{
"name":"Filter MD5 hash values",
"components":{
"do_hash":{
"script":"hash.py",
"script_parameters":{
"input":{
"required": true,
"dataclass": "Collection"
}
},
"repository":"$USER",
"script_version":"master",
"output_is_persistent":false
},
"do_filter":{
"script":"0-filter.py",
"script_parameters":{
"input":{
"output_of":"do_hash"
}
},
"repository":"$USER",
"script_version":"master",
"output_is_persistent":true
}
}
}
EOF
* @"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.
(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.)
Now, use @arv pipeline_template create@ to register your pipeline template in Arvados: