comparison env/lib/python3.9/site-packages/planemo/cwl/run.py @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4f3585e2f14b
1 """Module defines a planemo abstraction around running cwltool.
2
3 cwltool is an executable Python script and library mostly maintained by
4 Peter Amstutz and serves the reference implementation for the CWL.
5 It can be found at https://github.com/common-workflow-language/cwltool,
6 """
7 import json
8 import tempfile
9
10 from galaxy.tool_util.cwl.cwltool_deps import (
11 ensure_cwltool_available,
12 main,
13 )
14
15 from planemo.deps import ensure_dependency_resolvers_conf_configured
16 from planemo.io import error, real_io
17 from planemo.runnable import (
18 ErrorRunResponse,
19 SuccessfulRunResponse,
20 )
21
22 JSON_PARSE_ERROR_MESSAGE = ("Failed to parse JSON from cwltool output [%s] "
23 "in file [%s]. cwltool logs [%s].")
24
25
26 class CwlToolRunResponse(SuccessfulRunResponse):
27 """Describe the resut of a cwltool invocation."""
28
29 def __init__(self, log, outputs=None):
30 self._log = log
31 self._outputs = outputs
32
33 @property
34 def log(self):
35 return self._log
36
37 @property
38 def job_info(self):
39 return None
40
41 @property
42 def invocation_details(self):
43 return None
44
45 @property
46 def outputs_dict(self):
47 return self._outputs
48
49
50 def run_cwltool(ctx, path, job_path, **kwds):
51 """Translate planemo kwds to cwltool kwds and run cwltool main function."""
52 ensure_cwltool_available()
53
54 args = []
55 if ctx.verbose:
56 args.append("--verbose")
57 output_directory = kwds.get("output_directory", None)
58 if output_directory:
59 args.append("--outdir")
60 args.append(output_directory)
61 if kwds.get("no_container", False):
62 args.append("--no-container")
63 ensure_dependency_resolvers_conf_configured(ctx, kwds)
64 args.append("--beta-dependency-resolvers-configuration")
65 args.append(kwds["dependency_resolvers_config_file"])
66 if kwds.get("mulled_containers"):
67 args.append("--beta-use-biocontainers")
68
69 if kwds.get("non_strict_cwl", False):
70 args.append("--non-strict")
71
72 args.extend([path, job_path])
73 ctx.vlog("Calling cwltool with arguments %s" % args)
74 with tempfile.NamedTemporaryFile("w") as tmp_stdout, \
75 tempfile.NamedTemporaryFile("w") as tmp_stderr:
76 # cwltool passes sys.stderr to subprocess.Popen - ensure it has
77 # and actual fileno.
78 with real_io():
79 ret_code = main.main(
80 args,
81 stdout=tmp_stdout,
82 stderr=tmp_stderr,
83 )
84 tmp_stdout.flush()
85 tmp_stderr.flush()
86 with open(tmp_stderr.name, "r") as stderr_f:
87 log = stderr_f.read()
88 ctx.vlog("cwltool log output [%s]" % log)
89 with open(tmp_stdout.name, "r") as stdout_f:
90 try:
91 result = json.load(stdout_f)
92 except ValueError:
93 message = JSON_PARSE_ERROR_MESSAGE % (
94 open(tmp_stdout.name, "r").read(),
95 tmp_stdout.name,
96 log
97 )
98 error(message)
99 raise Exception(message)
100
101 if ret_code != 0:
102 return ErrorRunResponse("Error running cwltool", log=log)
103 outputs = result
104 return CwlToolRunResponse(
105 log,
106 outputs=outputs,
107 )
108
109
110 __all__ = (
111 "run_cwltool",
112 )