Skip to main content

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

gaia-0.0.9.tar.gz (7.0 kB view hashes)

Uploaded Source

Built Distribution

gaia-0.0.9-py2-none-any.whl (7.2 kB view hashes)

Uploaded Python 2

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page