The Arvados CWL Runner is a Python tool that allows you to register and submit workflows to Arvados. You can oversee a running workflow on your local system, or let that run inside an Arvados container. This tool requires the Python SDK installed in order to access Arvados services.
If you are logged in to a managed Arvados VM, the arvados-cwl-runner
utility should already be installed.
To use the CWL Runner elsewhere, you can install it from a distribution package or PyPI.
First, add the appropriate package repository for your distribution.
# dnf install python3-arvados-cwl-runner
# apt-get install python3-arvados-cwl-runner
Run pip install arvados-cwl-runner
in an appropriate installation environment, such as a virtualenv.
Note:
The CWL Runner uses pycurl
which depends on the libcurl
C library. To build the module you may have to first install additional packages. On Debian-based distributions you can install them by running:
# apt install git build-essential python3-dev libcurl4-openssl-dev libssl-dev
In order to pull and upload Docker images, arvados-cwl-runner
requires access to Docker. You do not need Docker if the Docker images you intend to use are already available in Arvados.
You can determine if you have access to Docker by running docker version
:
~$ docker version
Client:
Version: 1.9.1
API version: 1.21
Go version: go1.4.2
Git commit: a34a1d5
Built: Fri Nov 20 12:59:02 UTC 2015
OS/Arch: linux/amd64
Server:
Version: 1.9.1
API version: 1.21
Go version: go1.4.2
Git commit: a34a1d5
Built: Fri Nov 20 12:59:02 UTC 2015
OS/Arch: linux/amd64
If this returns an error, contact the sysadmin of your cluster for assistance.
Please refer to the Starting a Workflow at the Command Line tutorial for more information.
The content of this documentation is licensed under the
Creative
Commons Attribution-Share Alike 3.0 United States licence.
Code samples in this documentation are licensed under the
Apache License, Version 2.0.