X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/6a59d473c1574eec4db1f83b5d1a963b4f976e5a..f2060a005a084ff544d9479ea50bb8a02fe6a31d:/doc/user/tutorials/tutorial-firstscript.html.textile.liquid diff --git a/doc/user/tutorials/tutorial-firstscript.html.textile.liquid b/doc/user/tutorials/tutorial-firstscript.html.textile.liquid index adf4da1371..3937698476 100644 --- a/doc/user/tutorials/tutorial-firstscript.html.textile.liquid +++ b/doc/user/tutorials/tutorial-firstscript.html.textile.liquid @@ -4,6 +4,13 @@ navsection: userguide navmenu: Tutorials title: "Writing a Crunch script" ... +{% comment %} +Copyright (C) The Arvados Authors. All rights reserved. + +SPDX-License-Identifier: CC-BY-SA-3.0 +{% endcomment %} + +{% include 'pipeline_deprecation_notice' %} This tutorial demonstrates how to write a script using Arvados Python SDK. The Arvados SDK supports access to advanced features not available using the @run-command@ wrapper, such as scheduling concurrent tasks across nodes. @@ -11,10 +18,11 @@ This tutorial demonstrates how to write a script using Arvados Python SDK. The This tutorial uses @$USER@ to denote your username. Replace @$USER@ with your user name in all the following examples. -Start by creating a directory called @$USER@ . Next, create a subdirectory called @crunch_scripts@ and change to that directory: +Start by creating a directory called @tutorial@ in your home directory. Next, create a subdirectory called @crunch_scripts@ and change to that directory: -
~$ mkdir -p tutorial/crunch_scripts
+
~$ cd $HOME
+~$ mkdir -p tutorial/crunch_scripts
 ~$ cd tutorial/crunch_scripts