X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/50de1d57245ed33b7f0a563eef9da73f16e0ca6c..d77bf0c67422a259afacc17660698729328a1ed3:/doc/_includes/_run_command_simple_example.liquid diff --git a/doc/_includes/_run_command_simple_example.liquid b/doc/_includes/_run_command_simple_example.liquid index abd0071503..3f695934ae 100644 --- a/doc/_includes/_run_command_simple_example.liquid +++ b/doc/_includes/_run_command_simple_example.liquid @@ -1,29 +1,36 @@ { "name":"run-command example pipeline", "components":{ - "bwa-mem": { + "bwa-mem": { "script": "run-command", "script_version": "master", "repository": "arvados", "script_parameters": { "command": [ - "bwa", + "$(dir $(bwa_collection))/bwa", "mem", "-t", "$(node.cores)", + "-R", + "@RG\\\tID:group_id\\\tPL:illumina\\\tSM:sample_id", "$(glob $(dir $(reference_collection))/*.fasta)", "$(glob $(dir $(sample))/*_1.fastq)", "$(glob $(dir $(sample))/*_2.fastq)" ], - "task.stdout": "$(basename $(glob $(dir $(sample))/*_1.fastq)).sam", "reference_collection": { "required": true, "dataclass": "Collection" }, + "bwa_collection": { + "required": true, + "dataclass": "Collection", + "default": "39c6f22d40001074f4200a72559ae7eb+5745" + }, "sample": { "required": true, "dataclass": "Collection" - } + }, + "task.stdout": "$(basename $(glob $(dir $(sample))/*_1.fastq)).sam" } } }