Skip to main content

Firecloud API bindings and FISS CLI

Project description

====================
1. Description
====================

Firecloud API bindings and Firehose Service Selector (FISS)
Command-Line interface.

====================
2. Contents
====================
1. Description
2. Contents
3. Requirements
4. Release Notes
5. FISS
6. Low-Level API (firecloud.api) RESTful endpoints
7. High-Level Classes
8. Yapsy Plugin System

This package contains low-level api bindings to FireCloud services,
High-Level class abstractions for Workspaces and Entities, and the FISS
command-line tool for scripting FireCloud Tasks.

====================
3. Requirements
====================

Install this package via pip:
% pip install firecloud

Or download the source and install with setup.py:
% python setup.py install

This package depends on yapsy, oauth2client, and httplib2.

FireCloud uses the Google Cloud SDK (https://cloud.google.com/sdk/) to manage
authorization. To use the firecloud CLI or API, you must install the SDK and
login locally with

gcloud auth login

**Note: FireCloud encryts all web traffic with TLSv1.2. Some versions of
python will not function correctly, and must be recompiled with openssl
v1.02 or later. If recompiling is not an option, there is also a
dockerized version of the tool available on docker hub
(https://hub.docker.com/r/broadgdac/fiss/).

% docker pull broadgdac/fiss

====================
4. Release Notes
====================
v0.9.2 - Remove file-based check for getting application default credentials,
improving support for Jupyter-based sessions.

v0.9.1 - Fix expected return code for flow_new.

v0.9.0 - Replace Httplib2 with Requests, which resolves the SSL handshake issue
for python3. Added six to required packages, making FireCloud fully
compatible with python 2 & 3. Add links to FireCloud's swagger
documentation.

v0.8.1 - Improved test coverage. Enhanced interactive classes. Fixed error logic
to match new server response.

v0.8.0 - firecloud.api now boasts 100% coverage of existing (useful) API endpoints.

Several api endpoints for manipulating NIH credentials and profile info
will deliberately remain unimplemented unless a good reason arises. Any
discrepancies are noted in the api module's docstring; see
help(firecloud.api) for a lengthy overview.

New Method and Configuration objects.
>>> m = Method("broad-firecloud-gdac", "gistic2", 1)


v0.7.4 - FISS functions can now display their source code with the -F option.

v0.7.3 - Improved documentation, with docstrings for every public function.
This enables python's builtin help system to be used from the REPL.
To see all the available firecloud api calls:
% python
>>> import firecloud
>>> help(firecloud.api)

v0.7.2 - Fix some commands that broke with the API changes

v0.7.1 - Add workspace functions for importing entities and creating entity sets.

v0.7.0 - Renamed package "firecloud", replacing "fissfc"
- firecloud_cli.py renamed fiss.py
- firecloud_api.py renamed api.py
Added workspace class for more flexible python interactivity. Example:
>>> w = Workspace.new("broad-firecloud-testing", "my_workspace")
>>> w.bucket()
"fc-92e4ic0a-60fb-454a-8ue0-d0efea803421"
>>> w.lock()
Added better error messaging for unexpected FireCloud Errors

v0.6.2 - Add '--protected' option for workspace creation.

v0.6.1 - Firecloud production API is now https://api.firecloud.org/api

v0.6.0 - Refactored the argument structure for inferring a default project.
Instead of passing the namespace as an optional input to a
subcommand, the project can be overriden explicitly with the -p
top-level flag. This cleans up the syntax for many commands, and
makes the help clearer.

Add --all option to space_list
attr_get:
* attributes now given a a list of positional arguments,
instead of comma-separated
* entity type limited to firecloud supported entities
Fixed help messages for many commands


v0.5.0 - Add python 3 support, so that fissfc should be installable to
either version. A TLS issue may still prevent fissfc from
working on some versions of python.

v0.4.1 - Add attr_get subcommand, as a replacement for fiss annot_get.
Clarify error message.

v0.4.0 - Implement default value for google project into most subcommands

v0.3.2 - Add check in firecloud_api for the existence of gcloud credentials

v0.3.1 - Add confirmation prompt for delete commands, and a
Flag to override them.

v0.3.0 - Added support for Yapsy plugins.

v0.0.1 - Initial Release

====================
5. FISS
====================

Documentation coming soon, but don't despair!

FISS is self-documented via argparse. Type

% fiss --help

to get started.

===========================
6. FireCloud Low-Level API
===========================

The following is a list of all RESTful API calls for public FireCloud
orchestration-layer api. In general, there is a 1 to 1 relationship
between firecloud.api functions and these endpoints, except where
a more useful function exitsts, such as delete_participant().

'**' indicates an endpoint is not currently documented at https://api.firecloud.org
Functions that are implemented are listed before the endpoint

firecloud.api Last updated: 2016/03/29 (v0.8.0)

Entities:
get_entities_with_type() GET /api/workspaces/{workspaceNamespace}/{workspaceName}/entities_with_type List of entities in a workspace with type and attribute information
get_entity_types() GET /api/workspaces/{workspaceNamespace}/{workspaceName}/entities List of entity types in a workspace
upload_entities_tsv()* POST /api/workspaces/{workspaceNamespace}/{workspaceName}/importEntities Import entities from a tsv file
upload_entities() As above, for non-file based version
copy_entities() POST /api/workspaces/{workspaceNamespace}/{workspaceName}/entities/copy Copy entities from one workspace to another
get_entities() GET /api/workspaces/{workspaceNamespace}/{workspaceName}/entities/{entityType} List of entities in a workspace
get_entities_tsv() GET /api/workspaces/{workspaceNamespace}/{workspaceName}/entities/{entityType}/tsv TSV file containing workspace entities of the specified type
get_entity() GET /api/workspaces/{workspaceNamespace}/{workspaceName}/entities/{entityType}/{entityName} Get entity in a workspace
delete_entity() **DELETE /api/workspaces/{workspaceNamespace}/{workspaceName}/entities/{entityType}/{entityName} Delete entity in a workspace
delete_participant()* The following are entity_specific delete functions, all use the same endpoint as delete_entity()
delete_participant_set()*
delete_sample()*
delete_sample_set()*
delete_pair()*
delete_pair_set()*
(Won't Implement) GET /cookie-authed/workspaces/{workspaceNamespace}/{workspaceName}/entities/{entityType}/tsv TSV file containing workspace entities of the specified type (allows cookie-based authentication

Method Configurations:
get_configs() GET /api/workspaces/{workspaceNamespace}/{workspaceName}/methodconfigs List of Method Configurations in a workspace
create_config() POST /api/workspaces/{workspaceNamespace}/{workspaceName}/methodconfigs Create a Method Configuration in a workspace
delete_config() DELETE /api/workspaces/{workspaceNamespace}/{workspaceName}/method_configs/{configNamespace}/{configName} Delete a method configuration in a workspace
get_config() GET /api/workspaces/{workspaceNamespace}/{workspaceName}/method_configs/{configNamespace}/{configName} Get a method configuration in a workspace
update_config() PUT /api/workspaces/{workspaceNamespace}/{workspaceName}/method_configs/{configNamespace}/{configName} Update a method configuration in a workspace
validate_config() GET /api/workspaces/{workspaceNamespace}/{workspaceName}/methodconfigs/{configNamespace}/{configName}/validate get syntax validation information for a method configuration
rename_config() POST /api/workspaces/{workspaceNamespace}/{workspaceName}/method_configs/{configNamespace}/{configName}/rename Rename a method configuration in a workspace
copy_config_from_repo() POST /api/workspaces/{workspaceNamespace}/{workspaceName}/method_configs/copyFromMethodRepo Copy a Method Repository Configuration into a workspace
copy_config_to_repo() POST /api/workspaces/{workspaceNamespace}/{workspaceName}/method_configs/copyToMethodRepo Copy a Method Config in a workspace to the Method Repository

Method Repository:
get_repository_methods() GET /api/methods Lists Method Repository methods.
update_workflow() **POST /api/methods Create new workflow method
delete_workflow() **DELETE /api/methods/{namespace}/{name}/{snapshotId} Redact a version of a method
get_repositiory_configs() GET /api/configurations List Method Repository configurations.
get_config_template() POST /api/template Create a Method Configuration template from a Method
get_inputs_outputs() POST /api/inputsOutputs Get information about a method's inputs and outputs
get_repository_config() GET /api/configurations/{namespace}/{name}/{snapshotId} Get a Method Repository configuration
get_repository_method_acl() GET /api/methods/{namespace}/{name}/{snapshotId}/permissions get ACL permissions on a Method Repository method
update_repository_method_acl() POST /api/methods/{namespace}/{name}/{snapshotId}/permissions set ACL permissions on a Method Repository method
get_repository_config_acl() GET /api/configurations/{namespace}/{name}/{snapshotId}/permissions get ACL permissions on a Method Repository configuration
update_repository_config_acl() POST /api/configurations/{namespace}/{name}/{snapshotId}/permissions set ACL permissions on a Method Repository configuration
copy_config_from_repo() POST /api/workspaces/{workspaceNamespace}/{workspaceName}/method_configs/copyFromMethodRepo Copy a Method Repository Configuration into a workspace
copy_config_to_repo() POST /api/workspaces/{workspaceNamespace}/{workspaceName}/method_configs/copyToMethodRepo Copy a Method Config in a workspace to the Method Repository

Submissions:
get_submissions() GET /api/workspaces/{workspaceNamespace}/{workspaceName}/submissions List submissions.
create_submission() POST /api/workspaces/{workspaceNamespace}/{workspaceName}/submissions Create a submission.
abort_submission() DELETE /api/workspaces/{workspaceNamespace}/{workspaceName}/submissions/{submissionId} abort a submission
get_submission() GET /api/workspaces/{workspaceNamespace}/{workspaceName}/submissions/{submissionId} Monitor submission status
get_workflow_outputs() GET /api/workspaces/{workspaceNamespace}/{workspaceName}/submissions/{submissionId}/workflows/{workflowId}/outputs Get workflow outputs.

Workspaces:
get_workspaces() GET /api/workspaces Lists workspaces.
create_workspace() POST /api/workspaces Create workspace
delete_workspace() DELETE /api/workspaces/{workspaceNamespace}/{workspaceName} Delete workspace
get_workspace() GET /api/workspaces/{workspaceNamespace}/{workspaceName} Get workspace
get_workspace_acl() GET /api/workspaces/{workspaceNamespace}/{workspaceName}/acl Get workspace ACL
update_workspace_acl() PATCH /api/workspaces/{workspaceNamespace}/{workspaceName}/acl Update workspace ACL
clone_workspace() POST /api/workspaces/{workspaceNamespace}/{workspaceName}/clone Clone Workspace
lock_workspace() PUT /api/workspaces/{workspaceNamespace}/{workspaceName}/lock Lock Workspace
unlock_workspace() PUT /api/workspaces/{workspaceNamespace}/{workspaceName}/unlock Unlock Workspace
get_configs() GET /api/workspaces/{workspaceNamespace}/{workspaceName}/methodconfigs List of Method Configurations in a workspace
create_config() POST /api/workspaces/{workspaceNamespace}/{workspaceName}/methodconfigs Create a Method Configuration in a workspace
update_workspace_attributes() PATCH /api/workspaces/{workspaceNamespace}/{workspaceName}/updateAttributes Modify attributes on a workspace.

Status:
get_status() GET /api/status Returns the workspace service url, methods repository url, and the current timestamp.
ping() GET /api/status/ping Returns the current timestamp.

Profile:

get_billing_projects() GET /api/profile/billing List billing projects for a user

Other FireCloud Orchestration calls which are not implemented are listed below for completeness.

NIH:
(Won't Implement) POST /api/nih/callback Updates a user's NIH link from a JWT
(Won't Implement) GET /api/nih/status Retrieves info about a user's NIH link
(Won't Implement) POST /sync_whitelist Downloads the NIH Whitelist and Updates Rawls groups approrpriately

OAuth:
(Won't Implement) GET /login Starts the authentication flow for a user

Storage:
(Won't Implement) GET /api/storage/{bucket}/{object} Get metadata about an object stored in GCS.

Profile:
(Won't Implement) GET /me Returns registration and activation status for the current user
(Won't Implement) GET /register/profile Returns a list of all keys and values stored in the user profile service for the currently logged-in user.
(Won't Implement) GET /register Passes through to the Rawls userinfo API and returns its response
(Won't Implement) POST /register/profile Sets a profile object in the user profile service for the currently logged-in user.
(Won't Implement) GET /register/userinfo Passes through to Google's userinfo API and returns its response

=======================
7. High-Level Classes
=======================

Documentation coming soon.

==========================
8. Yapsy plugins for FISS
==========================

Documentation coming soon.

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

firecloud-0.9.2.tar.gz (21.2 kB view hashes)

Uploaded Source

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