Skip to content

Commit 978b9f8

Browse files
authored
Merge pull request #114 from broadinstitute/wdl_retrieve
New WDL extraction capabilities
2 parents 22045bf + 203693a commit 978b9f8

File tree

4 files changed

+49
-4
lines changed

4 files changed

+49
-4
lines changed

changelog.txt

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ Change Log for FISSFC: the (Fi)recloud (S)ervice (S)elector
33
=======================================================================
44
Terms used below: HL = high level interface, LL = low level interface
55

6+
v0.16.20 - Updated LL command get_repository_method with documentation link and
7+
new parameter wdl_only; new HL commands config_wdl and meth_wdl
8+
use the updated LL command to retrieve WDL from the workspace config
9+
and method repository respectively.
10+
611
v0.16.19 - Added config_diff HL command, HL command mop updated to work in
712
Python 3 and fail with proper error message when workspace bucket is
813
inaccessible.

firecloud/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Package version
2-
__version__ = "0.16.19"
2+
__version__ = "0.16.20"

firecloud/api.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -753,18 +753,21 @@ def get_repository_config(namespace, config, snapshot_id):
753753
uri = "configurations/{0}/{1}/{2}".format(namespace, config, snapshot_id)
754754
return __get(uri)
755755

756-
def get_repository_method(namespace, method, snapshot_id):
756+
def get_repository_method(namespace, method, snapshot_id, wdl_only=False):
757757
"""Get a method definition from the method repository.
758758
759759
Args:
760760
namespace (str): Methods namespace
761761
method (str): method name
762762
version (int): snapshot_id of the method
763+
wdl_only (bool): Exclude metadata
763764
764765
Swagger:
765-
UNDOCUMENTED
766+
https://api.firecloud.org/#!/Method_Repository/get_api_methods_namespace_name_snapshotId
766767
"""
767-
uri = "methods/{0}/{1}/{2}".format(namespace, method, snapshot_id)
768+
uri = "methods/{0}/{1}/{2}?onlyPayload={3}".format(namespace, method,
769+
snapshot_id,
770+
str(wdl_only).lower())
768771
return __get(uri)
769772

770773
def update_repository_method(namespace, method, synopsis, wdl, doc=None,

firecloud/fiss.py

+37
Original file line numberDiff line numberDiff line change
@@ -418,6 +418,14 @@ def meth_delete(args):
418418
print("Method %s removed from project %s" % (args.method,args.namespace))
419419
return 0
420420

421+
@fiss_cmd
422+
def meth_wdl(args):
423+
''' Retrieve WDL for given version of a repository method'''
424+
r = fapi.get_repository_method(args.namespace, args.method,
425+
args.snapshot_id, True)
426+
fapi._check_response_code(r, 200)
427+
return r.text
428+
421429
@fiss_cmd
422430
def meth_acl(args):
423431
''' Retrieve access control list for given version of a repository method'''
@@ -565,6 +573,20 @@ def config_get(args):
565573
return json.dumps(r.json(), indent=4, separators=(',', ': '),
566574
sort_keys=True, ensure_ascii=False)
567575

576+
@fiss_cmd
577+
def config_wdl(args):
578+
""" Retrieve the WDL for a method config in a workspace, send stdout """
579+
r = fapi.get_workspace_config(args.project, args.workspace,
580+
args.namespace, args.config)
581+
fapi._check_response_code(r, 200)
582+
583+
method = r.json()["methodRepoMethod"]
584+
args.namespace = method["methodNamespace"]
585+
args.method = method["methodName"]
586+
args.snapshot_id = method["methodVersion"]
587+
588+
return meth_wdl(args)
589+
568590
@fiss_cmd
569591
def config_diff(args):
570592
"""Compare method configuration definitions across workspaces. Ignores
@@ -2046,6 +2068,12 @@ def main(argv=None):
20462068
description='Redact method from the methods repository',
20472069
parents=[meth_parent, snapshot_parent])
20482070
subp.set_defaults(func=meth_delete)
2071+
2072+
# Retreive the WDL of a method
2073+
subp = subparsers.add_parser('meth_wdl',
2074+
description='Retrieve the WDL of a method',
2075+
parents=[meth_parent, snapshot_parent])
2076+
subp.set_defaults(func=meth_wdl)
20492077

20502078
# Access control list operations (upon methods)
20512079
# Get ACL
@@ -2102,6 +2130,15 @@ def main(argv=None):
21022130
help=proj_help, required=proj_required)
21032131
subp.set_defaults(func=config_get)
21042132

2133+
subp = subparsers.add_parser('config_wdl',
2134+
description='Retrieve method configuration WDL',
2135+
parents=[conf_parent])
2136+
subp.add_argument('-w', '--workspace', help='Workspace name',
2137+
default=fcconfig.workspace, required=workspace_required)
2138+
subp.add_argument('-p', '--project', default=fcconfig.project,
2139+
help=proj_help, required=proj_required)
2140+
subp.set_defaults(func=config_wdl)
2141+
21052142
subp = subparsers.add_parser('config_diff',
21062143
description='Compare method configuration definitions across workspaces',
21072144
parents=[conf_parent])

0 commit comments

Comments
 (0)