No project description provided
Project description
gaia python client
running
To connect to a running Gaia server, find the host (open an ssh tunnel to it if needed) and do the following
(optionally passing in a config
like {'gaia_host': 'localhost:24442'}
):
import gaia
flow = gaia.Gaia()
Now that we have a client object flow
, we can call these methods:
- workflows - list current workflows with summary information about each one
- upload - upload a new workflow (properties, Commands, and Steps)
- command - see what Commands are available and add new Commands to a new or existing workflow
- merge - update or add new Steps to a new or existing workflow
- halt - stop a running workflow
- run - resume running a workflow
- status - get information about a workflow
- expire - run the Steps needed to (re)-output the given files and/or Steps as well as their dependent Steps
workflows
To list current workflows with summary info on each one:
flow.workflows()
upload
To get something running, upload a demo workflow:
import json
commands = json.load('../../resources/test/demo-commands.json')
steps = json.load('../../resources/test/demo-processes.json')
flow.upload('crick_demo_20191130.121500', {'owner': 'crick'}, commands, steps)
Each workflow needs a unique name. The standard practice is to construct a name in the
form owner_program_datetime
, e.g. crick_DemoWorkflow_20191209.133734
.
This aids sorting and filtering workflows.
You will also need to launch some sisyphus workers. To do that [NOTE: This part is in flux]:
flow.launch(['a', 'b'])
Launch more if you want : ) Give each a unique name. They will deallocate 5 minutes after finishing their last Steps.
command
Commands are the base level operations that can be run, specifically: command line programs in a given docker container image. Once defined, a Command can be invoked any number of times with a new set of vars, inputs, and outputs.
If you call this method with an empty or absent array argument, it will return all Commands in the named workflow.
flow.command('biostream')
# [{'name': 'ls', 'image': 'ubuntu', ...}, ...]
A Command is expressed as a dictionary with the following keys:
- name - the Command name
- image - docker image to run in
- command - array of shell tokens to execute
- inputs - map of storage keys to internal paths inside the docker container where the Command's input files will be placed
- outputs - map of storage keys to internal paths inside the docker container where the Command's output files will be retrieved after the Command has run
- vars - map of var keys to string values to insert into Command tokens
They may also have an optional stdout
key which specifies what path to place stdout output (so that stdout can be used as one of the outputs of the command).
flow.command('biostream', [...])
If flow.command()
is called with an array of Command entries it will merge the given Commands into the workflow, thus adding and/or replacing Commands and triggering the recomputation of any Steps that refer to these Commands.
merge
Once some Commands exist in the workflow you can start merging in Steps to run. Every Step names a Command and sets the Command's vars, inputs, and outputs. Inputs and outputs refer to paths in the data store. Vars are strings that can be spliced into various parts of the Command's shell tokens.
Commands and Steps are kept in workflows which are entirely encapsulated from one another. Each workflow has its own data space with its own set of names and values.
To call the merge
method, provide a workflow name and an array of Steps:
flow.merge('biostream', [{'name': 'ls-home', 'command': 'ls', 'inputs': {...}, ...}, ...])
Each Step is a dictionary with the following keys:
- name - the Step name
- command - name of the Command to invoke
- inputs - map of input keys defined by the Command to keys in the data store to read the input files
- outputs - map of output keys from the Command to keys in the data store to write the output files after successfully invoking the Command
- vars - map of var keys to values. If this is an array it will create a Step for each element in the array with the given value
- timeout - number of seconds to allow the Step to run
If this is a Step with a name that hasn't been seen before, it will create the Step entry and trigger the computation of outputs if the required inputs are available in the data store. If the name
of the Step being merged already exists in the workflow, that Step will be updated and recomputed, along with all Steps that depend on outputs from the updated Step in that workflow.
run
The run
method simply triggers the computation in the provided workflow if it is not already running:
flow.run('biostream')
halt
The halt
method will immediately cancel all running tasks and stop the computation in the given workflow:
flow.halt('biostream')
status
The status
method provides information about a workflow, formatted as a
dictionary with these keys:
- state - a string representing the state of the overall workflow. Possible values are 'initialized', 'running', 'complete', 'halted', and 'error'.
- commands - a list of the workflow's Commands
- waiting-inputs - a list of the data inputs (file and directory paths) that Steps are waiting on
flow.status('biostream')
Or to include internal debugging details from the Gaia server:
flow.status('biostream', debug=True)
expire
The expire
method accepts a workflow and a list of Steps names and storage paths (storage keys). It makes those Steps and their dependent Steps have to run again.
flow.expire('biostream', ['ls-home', 'genomes', …])
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file gaia-0.0.9.tar.gz
.
File metadata
- Download URL: gaia-0.0.9.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.8.0 tqdm/4.23.0 CPython/2.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c879346a79b7c9add718c3a5cba06f847ed04564dbf22fbdb663a736dd00d75c |
|
MD5 | 5c633588222eef3c12234f2391e77cde |
|
BLAKE2b-256 | f1d835a61de9bded59285631995ab885dc34d37b4458e1a5b15dc6252047a47e |
File details
Details for the file gaia-0.0.9-py2-none-any.whl
.
File metadata
- Download URL: gaia-0.0.9-py2-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.8.0 tqdm/4.23.0 CPython/2.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1958bc725de1113f59fbbef888cf0f339faab9f647f5910de273688db265a650 |
|
MD5 | 0588ce77c11659e7c0c9ce1900b9cc63 |
|
BLAKE2b-256 | 46b0dab64d100bcfd19be408d6f398045187d65f0da290baf241470e11c948f0 |