Project

General

Profile

Port a Pipeline » History » Version 29

Nancy Ouyang, 04/17/2015 05:50 PM

1 7 Tom Clegg
{{>toc}}
2
3 1 Nancy Ouyang
h1. Port a Pipeline
4
5
Like any other tool, Arvados requires time to learn. Thus, we don't encourage using Arvados for initial development of analysis pipelines or exploratory research on small subsets of data, when each quick-and-dirty iteration takes minutes on a single machine. But for any computationally-intense work, Arvados offers a lot of benefits.
6
7 8 Nancy Ouyang
Okay, cool, provenance, reproducibility, easily scaling to gigabytes of data and mucho RAM, evaluating existing pipelines like lobSTR quickly.
8 1 Nancy Ouyang
9 8 Nancy Ouyang
But what about if you want to these benefits when running your own pipelines?
10
In other words, how do you **port a pipeline** to Arvados?
11 1 Nancy Ouyang
12
h2. 1. Quick Way
13
14
First, do you just want to parallelize a single bash script?
15
16 23 Nancy Ouyang
Check if you can use @arv-run@. Take this @arv-run@ example, which searches multiple FASTQ files in parallel, and saves the results to Keep through shell redirection:
17 9 Nancy Ouyang
18
    $ arv-run grep -H -n GCTACCAAGTTT \< *.fa \> output.txt
19 1 Nancy Ouyang
20 24 Nancy Ouyang
Or this example, which runs a shell script:
21
22
    $ echo 'echo hello world' > hello.sh    
23
$ arv-run /bin/sh hello.sh
24
25
(Lost? Check out http://doc.arvados.org/user/topics/arv-run.html)
26
27 1 Nancy Ouyang
h3. 1.1 Install arv-run
28
29
See: http://doc.arvados.org/sdk/python/sdk-python.html and http://doc.arvados.org/user/reference/api-tokens.html, or in short below:
30
<pre>
31
$ sudo apt-get install python-pip python-dev libattr1-dev libfuse-dev pkg-config python-yaml
32
$ sudo pip install --pre arvados-python-client
33
</pre>
34
(Lost? See http://doc.arvados.org/sdk/python/sdk-python.html )
35
36
If you try to use arv run right now, it will complain about some settings your missing. To fix that,
37
38 13 Nancy Ouyang
# Go to http://cloud.curoverse.com
39 1 Nancy Ouyang
# Login with any Google account (you may need to click login a few times if you hit multiple redirects from Google)
40
# Click in the upper right on your account name -> Manage Account
41 15 Nancy Ouyang
... !{height:10em}manage_account.png!:manage_account.png
42 1 Nancy Ouyang
# Optional: While you're here, click "send request for shell access", since that will give you shell access to a VM with all of the Arvados tools pre-installed.
43 14 Nancy Ouyang
1) !{height:10em}send_request.png!:send_request.png 2) !{height:10em}request_sent.png!:request_sent.png 3) !{height:10em}access_granted.png!:access_granted.png 
44 12 Nancy Ouyang
# Copy the lines of text into your terminal, something like
45 1 Nancy Ouyang
<pre>
46
HISTIGNORE=$HISTIGNORE:'export ARVADOS_API_TOKEN=*'
47
export ARVADOS_API_TOKEN=sekritlongthing
48 12 Nancy Ouyang
export ARVADOS_API_HOST=qr1hi.arvadosapi.com
49 1 Nancy Ouyang
unset ARVADOS_API_HOST_INSECURE
50 17 Nancy Ouyang
</pre> ... !{height:5em}terminal_ssh.png!:terminal_ssh.png
51 22 Nancy Ouyang
# If you want this to persist across reboot, add the above lines to @~/.bashrc@ or your @~/.bash_profile@
52 1 Nancy Ouyang
53
(Lost? See http://doc.arvados.org/user/reference/api-tokens.html )
54
55
h3. 1.2 Submit job to Arvados
56
57
First, check: Does your command work locally?
58
59 25 Nancy Ouyang
    $ grep -H -n TGGAAGT *.fa
60 1 Nancy Ouyang
61 25 Nancy Ouyang
... !{width:20em}grep-fasta.png!:grep-fasta.png
62
63
(If you want to follow along and don't have fasta files -- use the ones here: https://workbench.qr1hi.arvadosapi.com/collections/qr1hi-4zz18-0o2bt8216d7trrw)
64
65 1 Nancy Ouyang
If so, then submit it to arvados using @arv run@
66
67 25 Nancy Ouyang
    $ arv-run grep -H -n TGGAAGT \< *.fa \> output.txt
68 1 Nancy Ouyang
69 21 Nancy Ouyang
* This bash command stores the results as @output.txt@
70 25 Nancy Ouyang
* Note that due to the particulars of grep, Arvados will report this pipeline as **failed** if grep does not find anything, and no output will appear on Arvados
71 1 Nancy Ouyang
72
Your dataset is uploaded to Arvados if it wasn't on there already (which may take a while if it's a large dataset), your @grep@ job is submitted to run on the Arvados cluster, and you get the results in a few minutes (stored inside @output.txt@ in Arvados). If you go to Workbench at http://cloud.curoverse.com, you will see the pipeline running. It may take a few minutes for Arvados to spool up a node, provision it, and run your job. The robots are working hard for you, grab a cup of coffee.
73
74 21 Nancy Ouyang
(Lost? See http://doc.arvados.org/user/topics/arv-run.html )
75 25 Nancy Ouyang
76
77 1 Nancy Ouyang
78
h3. 1.3 However
79
80 10 Nancy Ouyang
If your pipeline looks more like
81
82 11 Nancy Ouyang
!{width: 50%}https://arvados.org/attachments/download/428/provenance_graph_full.png!:https://arvados.org/attachments/download/428/provenance_graph_full.png
83 10 Nancy Ouyang
84
@arv-run@ is not powerful enough. Here we gooooo.
85 1 Nancy Ouyang
86 20 Nancy Ouyang
(yes, that is a screenshot of an actual pipeline graph auto-generated by Arvados)
87
88 1 Nancy Ouyang
h2. 2. In Short
89
90
**Estimated reading time: 1 hour.**
91
92
You must write a **pipeline template** that describes your pipeline to Arvados.
93
94
h3. 2.1 VM (Virtual Machine) Access
95
96
Note: You'll need the Arvados set of command-line tools to follow along. The easiest way to get started is to get access to a Virtual Machine (VM) with all the tools pre-installed.
97
98 19 Nancy Ouyang
# Go to http://cloud.curoverse.com
99 1 Nancy Ouyang
# Login with google account (you may need to click login a few times, our redirects are not working well)
100 18 Nancy Ouyang
# Click in the upper right on your account name -> Manage Account
101
# Hit the "Request shell access" button under Manage Account in workbench.
102 1 Nancy Ouyang
103
h3. 2.2 Pipeline Template Example
104
105
Here is what a simple pipeline template looks like, where the output of program A is provided as input to program B. We'll explain what it all means shortly, but first, don't worry -- you'll never be creating a pipeline template from scratch. You'll always copy and modify an existing boilerplate one (yes, a template for the pipeline template! :])
106
107
108
    **pipelinetemplate.json**
109
    {
110
    "name": "Tiny Bash Script",
111
      "components": {
112
        "Create Two Files": {
113
          "script": "run-command",
114
          "script_version": "master",
115
          "repository": "nancy",
116
          "script_parameters": {
117
            "command": [
118
              "$(job.srcdir)/crunch_scripts/createtwofiles.sh"
119
            ]
120
          ,
121
          "runtime_constraints": {
122
            "docker_image": "nancy/cgatools-wormtable"
123
        ,
124
        "Merge Files": {
125
          "script": "run-command",
126
          "script_version": "master",
127
          "repository": "nancy",
128
          "script_parameters": {
129
            "command": [
130
              "$(job.srcdir)/crunch_scripts/mergefiles.sh",
131
              "$(input)"
132
            ],
133
            "input": {
134
              "output_of": "Create Two Files"
135
          ,
136
          "runtime_constraints": {
137
            "docker_image": "nancy/cgatools-wormtable"
138
          
139
h2. 3. simple and sweet port-a-pipeline example
140
141
Okay, let's dig into what's going on.
142
143
h3. 3.1 the setup
144
145
We'll port an artificially simple pipeline which involves just two short bash scripts, described as "A" and "B" below:
146
147
**Script A. Create two files**
148
Input: nothing
149 26 Nancy Ouyang
Output: two files (@out1.txt@ and @out2.txt@)
150 1 Nancy Ouyang
151
**Script B. Merge two files into a single file**
152
Input: output of step A
153 26 Nancy Ouyang
Output: a single file (@output.txt@)
154 1 Nancy Ouyang
155 27 Nancy Ouyang
Or visually (ignore the long strings of gibberish in the rectangles for now):
156 1 Nancy Ouyang
157 27 Nancy Ouyang
... !{height:30em}choose_inputs-small.png!:choose_inputs-small.png
158
159 26 Nancy Ouyang
160 1 Nancy Ouyang
Here's what we've explained so far in the pipeline template:
161
162
163
    **pipelinetemplate.json**
164
    {
165
    **"name": "Tiny Bash Script",**
166
      "components": {
167
       **"Create Two Files": {**
168
          "script": "run-command",
169
          "script_version": "master",
170
          "repository": "arvados",
171
          "script_parameters": {
172
            "command": [
173
              "$(job.srcdir)/crunch_scripts/ *createtwofiles.sh* "
174
            ]
175
          ,
176
          "runtime_constraints": {
177
            "docker_image": "nancy/cgatools-wormtable"
178
        ,
179
        **"Merge Files": {**
180
          "script": "run-command",
181
          "script_version": "master",
182
          "repository": "arvados",
183
          "script_parameters": {
184
            "command": [
185
              "$(job.srcdir)/crunch_scripts/ *mergefiles.sh* ",
186
              "$(input)"
187
            ],
188
           **"input": {**
189
              **"output_of": "Create Two Files"**
190
          ,
191
          "runtime_constraints": {
192
            "docker_image": "nancy/cgatools-wormtable"
193
194
h3. **3.2 arv-what?**
195
196
Before we go further, let's take a quick step back. Arvados consists of two parts
197
198
**Part 1. Keep** - I have all your files in the cloud!
199
200
You can access your files through your browser, using **Workbench**, or using the Arvados command line (CLI) tools (link: http://doc.arvados.org/sdk/cli/index.html ).
201
202 28 Nancy Ouyang
Visually, in Workbench, the built-in Arvados web interface, this looks like
203
... !{height:15em}port-a-pipeline-workbench-collection.png!:port-a-pipeline-workbench-collection.png
204 1 Nancy Ouyang
205 28 Nancy Ouyang
Or via the command-line interface
206
... !{height:10em}CLI-keep.png!:CLI-keep.png
207
208
209
210 1 Nancy Ouyang
**Part 2. Crunch** - I run all your scripts in the cloud!
211
212
Crunch both dispatches jobs and provides version control for your pipelines.
213
214
You describe your workflow to Crunch using **pipeline templates**. Pipeline templates describe a pipeline ("workflow"), the type of inputs each step in the pipeline requires, and . You provide a high-level description of how data flows through the pipeline—for example, the outputs of programs A and B are provided as input to program C—and let Crunch take care of the details of starting the individual programs at the right time with the inputs you specified.
215
216 28 Nancy Ouyang
... !{width:20em}provenance_graph_detail.png!:provenance_graph_detail.png
217
... _Each task starts when all its inputs have been created_
218 1 Nancy Ouyang
219
Once you save a pipeline template in Arvados, you run it by creating a pipeline instance that lists the specific inputs you’d like to use. The pipeline’s final output(s) will be saved in a project you specify.
220
221
Concretely, a pipeline template describes
222
223
* **data inputs** - specified as Keep content addresses
224
* **job scripts** - stored in a Git version control repository and referenced by a commit hash
225
* **parameters** - which, along with the data inputs, can have default values or can be filled in later when the pipeline is actually run
226
* **the execution environment** - stored in Docker images and referenced by Docker image name
227
228
**What is Docker**? Docker allows Arvados to replicate the execution environment your tools need. You install whatever bioinformatics tools (bwa-mem, vcftools, etc.) you are using inside a Docker image, upload it to Arvados, and Arvados will recreate your environment for computers in the cloud.
229
230
**Protip:** Install stable external tools in Docker. Put your own scripts in a Git repository. This is because each docker image is about 500 GB, so each new docker image takes a while to upload (30 minutes) if you are not using Arvados on a local cluster. In the future, we hope to use small diff files describing just the changes made to Docker image instead of the full Docker image. [Last updated 19 Feb 2015]
231
232
h3. 3.3 In More Detail
233
234
Alright, let's put that all together.
235
236
    **pipelinetemplate.json**
237
    {
238
    "name": "Tiny Bash Script",
239
      "components": {
240
        "Create Two Files": {
241
          "script": "run-command",
242
          "script_version": "master",
243
          "repository": "nancy",
244
          "script_parameters": {
245
            "command": [
246
              "$(job.srcdir)/crunch_scripts/createtwofiles.sh" **#[1]**
247
            ]
248
          ,
249
          "runtime_constraints": {
250
            "docker_image": "nancy/cgatools-wormtable"
251
        ,
252
        "Merge Files": {
253
          "script": "run-command",
254
          "script_version": "master",
255
          "repository": "nancy",
256
          "script_parameters": {
257
            "command": [
258
              "$(job.srcdir)/crunch_scripts/mergefiles.sh", **#[2]**
259
              "$(input)"
260
            ],
261
            "input": {
262
              "output_of": "Create Two Files" **#[3]**
263
          ,
264
          "runtime_constraints": {
265
            "docker_image": "nancy/cgatools-wormtable"    
266
    
267
**Explanation**
268
    
269
[1] **$(job.srcdir)** references the git repository "in the cloud". Even though **run-command** is in nancy/crunch_scripts/ and is "magically found" by Arvados, INSIDE run-command you can't reference other files in the same repo as run-command without this magic variable.
270
271
Any output files as a result of this run-command will be automagically stored to keep as an auto-named collection (which you can think of as a folder for now).
272
273
[2] Okay, so how does the next script know where to find the output of the previous job? run-command will keep track of the collections it's created, so we can feed that in as an argument to our next script. In this "command" section under "run-command", you can think of the commas as spaces. Thus, what this line is saying is "run mergefile.sh on the previous input", or
274
275
  $ mergefiles.sh [directory with output of previous command]
276
277
[3] Here we set the variable "input" to point to the directory with the output of the previous command "Create Two Files".
278
279
(Lost? Try the hands-on example in the next section, or read more detailed documentation on the Arvados website: 
280
281
* http://doc.arvados.org/user/tutorials/running-external-program.html
282
* http://doc.arvados.org/user/topics/run-command.html
283
* http://doc.arvados.org/api/schema/PipelineTemplate.html )
284
285
h3. 3.4 All hands on deck!
286
287
Okay, now that we know the rough shape of what's going on, let's get our hands dirty.
288
289 2 Nancy Ouyang
*From your local machine, login to Arvados virtual machine*
290 1 Nancy Ouyang
291 4 Nancy Ouyang
Single step:
292 1 Nancy Ouyang
293 4 Nancy Ouyang
  nrw@ *@nrw-local@* $ ssh nancy@lightning-dev4.shell.arvados
294
295 1 Nancy Ouyang
(Lost? See "SSH access to machine with Arvados commandline tools installed" http://doc.arvados.org/user/getting_started/ssh-access-unix.html )
296
297
**In VM, create pipeline template**
298
299
A few steps:
300
301
  nancy@ *@lightning-dev4.su92l@* :~$ arv create pipeline_template
302
Created object qr1hi-p5p6p-3p6uweo7omeq9e7
303
$ arv edit qr1hi-p5p6p-3p6uweo7omeq9e7 #Create the pipeline template as described above! [[Todo: concrete thing]]
304
305
(Lost? See "Writing a pipeline template" http://doc.arvados.org/user/tutorials/running-external-program.html )
306
307
*In VM, set up git repository with run_command and our scripts*
308
309 2 Nancy Ouyang
A few steps: 
310 1 Nancy Ouyang
311 2 Nancy Ouyang
  $ mkdir @~@/projects
312
$ cd @~@/projects
313
~/projects $ git clone git@git.qr1hi.arvadosapi.com:nancy.git 
314 1 Nancy Ouyang
315 2 Nancy Ouyang
(Lost? Find your own git URL by going to https://workbench.su92l.arvadosapi.com/manage_account )
316 1 Nancy Ouyang
317 2 Nancy Ouyang
    ⤷Copy run_command & its dependencies into this crunch_scripts
318
  $ git clone https://github.com/curoverse/arvados.git 
319 1 Nancy Ouyang
320 2 Nancy Ouyang
(Lost? Visit https://github.com/curoverse/arvados )
321
322
  @  @$ cd ./nancy
323
  *@~/projects/nancy@* $ mkdir crunch_scripts
324
  *@~/projects/nancy@* $ cd crunch_scripts
325
  *@~/projects/nancy/crunch_scripts@* $ cp @~@/projects/arvados/crunch_scripts/run_command . #trailing dot!
326
  ~/projects/nancy/crunch_scripts$ cp ~/projects/arvados/crunch_scripts/crunchutil . #trailing dot!
327
328
  @  @$ cd ~/projects/nancy/crunch_scripts
329
330
  @  @$ vi createtwofiles.sh
331
    ⤷ $cat createtwofiles.sh
332
    #!/bin/bash
333
    echo "Hello " > out1.txt
334
    echo "Arvados!" > out2.txt
335
336
  @  @$ vi mergefiles.sh
337 1 Nancy Ouyang
    ⤷$cat mergefiles.sh
338 5 Nancy Ouyang
      #!/bin/bash *#[1]*
339
      PREVOUTDIR=$1 *#[2]*
340
      echo $TASK_KEEPMOUNT/by_id/$PREVOUTDIR *#[3]*
341 1 Nancy Ouyang
      cat $TASK_KEEPMOUNT/by_id/$PREVOUTDIR/*.txt > output.txt
342
    
343 5 Nancy Ouyang
⤷ *Explanations*
344 6 Nancy Ouyang
*[1]* We use the @#!@ syntax to let bash know what to execute this file with
345 5 Nancy Ouyang
346
  ⤷To find the location of any particular tool, try using **which**
347
    $ which python
348
    /usr/bin/python
349
    $ which bash
350
    /bin/bash
351
    
352 29 Nancy Ouyang
*[2]* Here we give a human-readable name, @PREVOUTDIR@, to the first argument (referenced using the dollar-sign syntax ala @$1@), given to @mergefiles.sh@, which (referring back to the pipeline template) we defined as the directory containing the output of the previous job (which ran @createtwofiles.sh@).
353
354
(Lost about @$1@? Google "passing arguments to the bash script").
355 5 Nancy Ouyang
    
356
*[3]* Using the environmental variable @TASK_KEEPMOUNT@ allows us to not make assumptions about where **keep** is mounted. @TASK_KEEPMOUNT@ will be replaced by Arvados automatically with the name of the location to which **keep** is mounted on each worker node. (Lost? Visit http://doc.arvados.org/user/tutorials/tutorial-keep-mount.html )
357 1 Nancy Ouyang
    
358 6 Nancy Ouyang
<pre>$ chmod +x createtwofiles.sh mergefiles.sh # make these files executable</pre>
359 1 Nancy Ouyang
360
**Commit changes and push to remote**
361
362 2 Nancy Ouyang
A few steps: 
363 1 Nancy Ouyang
364 2 Nancy Ouyang
  $ git status #check that everything looks ok
365
$ git add *
366
$ git commit -m “hello world-of-arvados scripts!”
367
$ git push
368
369 1 Nancy Ouyang
**Install Docker**
370
371 2 Nancy Ouyang
A few steps: 
372 1 Nancy Ouyang
373 2 Nancy Ouyang
  $ sudo apt-get install docker.io
374
$ sudo groupadd docker
375
$ sudo gpasswd -a $USER docker #in my case, I replace $USER with “nancy”
376
$ sudo service docker restart
377
$ exec su -l $USER   #if you don’t want to login+out or spawn a new shell, this will restart your shell
378
379 1 Nancy Ouyang
**Make docker less sad about running out of space on the VM**
380
381 2 Nancy Ouyang
A few steps:
382
383
  $ sudo mkdir /data/docker
384
$ sudo vi /etc/default/docker
385
@  @⤷$ cat /etc/default/docker
386
      DOCKER_OPTS="--graph='/data/docker'"
387
      export TMPDIR="/data/docker"
388 1 Nancy Ouyang
     
389
**Make Arvados less sad about running out of space on the VM**
390 2 Nancy Ouyang
391
A few steps: 
392
393 1 Nancy Ouyang
    $ sudo mkdir /data/docker-cache
394 3 Nancy Ouyang
$ sudo chown nancy:nancy /data/docker-cache
395
$ ln -s /data/docker-cache docker
396 1 Nancy Ouyang
397
**Create Docker image with Arvados command-line tools and other tools we want**
398 2 Nancy Ouyang
399
A few steps: 
400
401 3 Nancy Ouyang
    $ docker pull arvados/jobs
402 1 Nancy Ouyang
$ docker run -ti arvados/jobs /bin/bash
403 2 Nancy Ouyang
404 4 Nancy Ouyang
Now we are in the docker image.
405 2 Nancy Ouyang
406 1 Nancy Ouyang
    root@4fa648c759f3:/# apt-get update 
407
408 2 Nancy Ouyang
    @  @⤷In the docker image, install external tools that you don't expect to need to update often. 
409 1 Nancy Ouyang
    For instance, we can install the wormtable python tool in this docker image
410 2 Nancy Ouyang
    @  @# apt-get install libdb-dev
411 3 Nancy Ouyang
    @  @# pip install wormtable
412 1 Nancy Ouyang
413
    @  @  ⤷ Note: If you're installing from binaries, you should either
414 6 Nancy Ouyang
        1) Install in existing places where bash looks for programs (e.g. install in /usr/local/bin/cgatools). 
415
        To see where bash looks, inspect the PATH variable.
416 1 Nancy Ouyang
          #echo $PATH
417
          /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
418 6 Nancy Ouyang
        2) If you put them in a custom directory, remember them to reference them as such in your scripts
419
        (e.g. spell out /home/nrw/local/bin/cgatools).
420
        Arvados will not respect modifyng the $PATH variable by using the ~/.bashrc configuration file in the docker image.
421 2 Nancy Ouyang
422 1 Nancy Ouyang
(Lost? See http://doc.arvados.org/user/topics/arv-docker.html )
423
    
424
  root@4fa648c759f3:/# exit
425 2 Nancy Ouyang
426 1 Nancy Ouyang
*Commit Docker image*
427 2 Nancy Ouyang
<pre>
428 6 Nancy Ouyang
$ docker commit 4fa648c759f3 nancy/cgatools-wormtable #Label the image thoughtfully
429
$ #For instance here I used the name of key tools I installed: cgatools & wormtable
430 2 Nancy Ouyang
</pre>
431 1 Nancy Ouyang
432 2 Nancy Ouyang
*Upload Docker image from your VM to Keep*
433
<pre>
434
$ arv keep docker nancy/cgatools-wormtable #this takes a few minutes
435
$ arv keep docker #lists docker images in the cloud, so you can double-check what was uploaded </pre>
436 1 Nancy Ouyang
437
**Run this pipeline!**
438
Go to Workbench and hit **Run**.
439 2 Nancy Ouyang
<pre>$ firefox http://su92l.arvadosapi.com</pre>
440 1 Nancy Ouyang
[!image: workbench with 'tiny bash script']
441
442 2 Nancy Ouyang
*Note: If no worker nodes are already provisioned, your job may take up to 10 minutes to queue up and start.* Behind-the-scenes, Arvados is requesting compute nodes for you and installing your Docker image and otherwise setting up the environment on those nodes. Then Arvados will be ready to run your job. Be patient -- the wait time may seem frustrating for a trivial pipeline like this, but Arvados really excels at handling long and complicated pipelines with built-in data provenance and pipeline reproducibility.
443 1 Nancy Ouyang
444
h3. 3.5 Celebrate
445
446
Whew! Congratulations on porting your first pipeline to Arvados! Check out http://doc.arvados.org/user/topics/crunch-tools-overview.html to learn more about the different ways to port pipelines to Arvados and how to take full advantage of Arvados's features, like restarting pipelines from where they failed instead of from the beginning. 
447
448
h2. 4. Debugging Tips and Pro-Tips
449
450
h3. **4.1 Pro-tips**
451
452
**Keep mounts are read-only right now. [19 March 2015]**
453
Need to 1) make some temporary directories or 2) change directories away from wherever you started out in but still upload the results to keep?
454
455
For 1, Explicitly use the $HOME directory and make the temporary files there
456
For 2, Use present working directory, $(pwd) at the beginning of your script to write down the directory where run-command will look for files to upload to keep.
457
458
Here's an example:
459
<pre>
460
$ cat mergefiles.sh
461
  TMPDIR=$HOME #directory to make temporary files in
462
  OUTDIR=$(pwd) #directory to put output files in
463
  mkdir $TMPDIR
464
  touch $TMPDIR/sometemporaryfile.txt #this file is deleted when the worker node is stopped
465
  touch $OUTDIR/someoutputfile.txt #this file will be uploaded to keep by run-command
466
</pre>
467
468
* make sure you point to the right repository, your own or arvados.
469
* make sure you pin the script versions of your python sdk, docker image, and script version or you will not get reproducibiltiy.
470
* if you have a file you want to use as a crunch script, make sure its in a crunch_scripts directory. otherwise, arvados will not find it. i.e. ~/path/to/git/repo/crunch_scripts/foo.py
471
472
h3. 4.2 Common log errors and reasons for pipelines to fail
473
474
Todo.
475
476
h3. 4.3 Miscellaneous Notes
477
478
Other ways to avoid the read-only keep mount problem is to use task.vwd which uses symlinks from the output directory which is writable to the colelction in keep. If you can change your working directory to the output directory and do all your work there, you'll avoid the keep read only issue.  (lost? see http://doc.arvados.org/user/topics/run-command.html )
479
    
480
When indexing, i.e. tabix, bwa index, etc. The index file tends to be created in the same directory as your fastq file. In order to avoid this, use ^. There is no way to send the index file to another directory. If you figure out a way, please tell me.
481
482
"bash" "-c" could be your friend, it works sometimes, sometimes it doesnt. I don't have a good handle on why this works sometimes.
483
484
if you're trying to iterate over >1 files using the task.foreach, its important to know that run-command uses a m x n method of making groups. I dont think I can explain it right now, but it may not be exactly what you want and you can trip over it. (lost? see http://doc.arvados.org/user/topics/run-command.html )
485
486
When trying to pair up reads, its hard to use run-command. You have to manipulate basename and hope your file names are foo.1 foo.2. base name will treat the group as foo (because you'll regex the groups as foo) and you can glob for foo.1 and foo.2. but if the file names are foo_1 and foo_2, you cant regex search them for foo becuase you'll get both names into a group and you'll be iterating through both of them twice, because of m x n. 
487
    
488
Your scripts need to point to the right place where the file is. Its currently hard to figure out how to grep the file names, you have to do some magic through the collection api.
489
490
h2. 5. Learn More
491
492
To learn more, head over to the Arvados User Guide documentation online: http://doc.arvados.org/user/