1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: Apache-2.0
5 from past.builtins import basestring
6 from future.utils import viewitems
13 from io import StringIO
17 from typing import (MutableSequence, MutableMapping)
19 from ruamel.yaml import YAML
20 from ruamel.yaml.comments import CommentedMap, CommentedSeq
22 from schema_salad.sourceline import SourceLine, cmap
23 import schema_salad.ref_resolver
25 import arvados.collection
27 from cwltool.pack import pack
28 from cwltool.load_tool import fetch_document, resolve_and_validate_document
29 from cwltool.process import shortname, uniquename
30 from cwltool.workflow import Workflow, WorkflowException, WorkflowStep
31 from cwltool.utils import adjustFileObjs, adjustDirObjs, visit_class, normalizeFilesDirs
32 from cwltool.context import LoadingContext
34 from schema_salad.ref_resolver import file_uri, uri_file_path
36 import ruamel.yaml as yaml
38 from .runner import (upload_dependencies, packed_workflow, upload_workflow_collection,
39 trim_anonymous_location, remove_redundant_fields, discover_secondary_files,
40 make_builder, arvados_jobs_image, FileUpdates)
41 from .pathmapper import ArvPathMapper, trim_listing
42 from .arvtool import ArvadosCommandTool, set_cluster_target
43 from ._version import __version__
44 from .util import common_prefix
46 from .perf import Perf
48 logger = logging.getLogger('arvados.cwl-runner')
49 metrics = logging.getLogger('arvados.cwl-runner.metrics')
51 max_res_pars = ("coresMin", "coresMax", "ramMin", "ramMax", "tmpdirMin", "tmpdirMax")
52 sum_res_pars = ("outdirMin", "outdirMax")
54 def make_wrapper_workflow(arvRunner, main, packed, project_uuid, name, git_info, tool):
55 col = arvados.collection.Collection(api_client=arvRunner.api,
56 keep_client=arvRunner.keep_client)
58 with col.open("workflow.json", "wt") as f:
59 json.dump(packed, f, sort_keys=True, indent=4, separators=(',',': '))
61 pdh = col.portable_data_hash()
63 toolname = tool.tool.get("label") or tool.metadata.get("label") or os.path.basename(tool.tool["id"])
64 if git_info and git_info.get("http://arvados.org/cwl#gitDescribe"):
65 toolname = "%s (%s)" % (toolname, git_info.get("http://arvados.org/cwl#gitDescribe"))
67 existing = arvRunner.api.collections().list(filters=[["portable_data_hash", "=", pdh], ["owner_uuid", "=", project_uuid]]).execute(num_retries=arvRunner.num_retries)
68 if len(existing["items"]) == 0:
69 col.save_new(name=toolname, owner_uuid=project_uuid, ensure_unique_name=True)
71 # now construct the wrapper
74 "id": "#main/" + toolname,
77 "run": "keep:%s/workflow.json#main" % pdh,
82 for i in main["inputs"]:
84 # Make sure to only copy known fields that are meaningful at
85 # the workflow level. In practice this ensures that if we're
86 # wrapping a CommandLineTool we don't grab inputBinding.
87 # Right now also excludes extension fields, which is fine,
88 # Arvados doesn't currently look for any extension fields on
90 for f in ("type", "label", "secondaryFiles", "streamable",
91 "doc", "id", "format", "loadContents",
92 "loadListing", "default"):
105 for i in main["inputs"]:
107 "id": "#main/step/%s" % shortname(i["id"]),
111 for i in main["outputs"]:
112 step["out"].append({"id": "#main/step/%s" % shortname(i["id"])})
113 wrapper["outputs"].append({"outputSource": "#main/step/%s" % shortname(i["id"]),
117 wrapper["requirements"] = [{"class": "SubworkflowFeatureRequirement"}]
119 if main.get("requirements"):
120 wrapper["requirements"].extend(main["requirements"])
121 if main.get("hints"):
122 wrapper["hints"] = main["hints"]
124 doc = {"cwlVersion": "v1.2", "$graph": [wrapper]}
130 return json.dumps(doc, sort_keys=True, indent=4, separators=(',',': '))
133 def rel_ref(s, baseuri, urlexpander, merged_map, jobmapper):
134 if s.startswith("keep:"):
137 uri = urlexpander(s, baseuri)
139 if uri.startswith("keep:"):
142 fileuri = urllib.parse.urldefrag(baseuri)[0]
144 for u in (baseuri, fileuri):
146 replacements = merged_map[u].resolved
147 if uri in replacements:
148 return replacements[uri]
151 return jobmapper.mapper(uri).target
153 p1 = os.path.dirname(uri_file_path(fileuri))
154 p2 = os.path.dirname(uri_file_path(uri))
155 p3 = os.path.basename(uri_file_path(uri))
157 r = os.path.relpath(p2, p1)
161 return os.path.join(r, p3)
164 basetypes = ("null", "boolean", "int", "long", "float", "double", "string", "File", "Directory", "record", "array", "enum")
166 if re.match(b+"(\[\])?\??", tp):
171 def update_refs(d, baseuri, urlexpander, merged_map, jobmapper, runtimeContext, prefix, replacePrefix):
172 if isinstance(d, MutableSequence):
173 for i, s in enumerate(d):
174 if prefix and isinstance(s, str):
175 if s.startswith(prefix):
176 d[i] = replacePrefix+s[len(prefix):]
178 update_refs(s, baseuri, urlexpander, merged_map, jobmapper, runtimeContext, prefix, replacePrefix)
179 elif isinstance(d, MutableMapping):
180 for field in ("id", "name"):
181 if isinstance(d.get(field), str) and d[field].startswith("_:"):
182 # blank node reference, was added in automatically, can get rid of it.
186 baseuri = urlexpander(d["id"], baseuri, scoped_id=True)
187 elif "name" in d and isinstance(d["name"], str):
188 baseuri = urlexpander(d["name"], baseuri, scoped_id=True)
190 if d.get("class") == "DockerRequirement":
191 dockerImageId = d.get("dockerImageId") or d.get("dockerPull")
192 d["http://arvados.org/cwl#dockerCollectionPDH"] = runtimeContext.cached_docker_lookups.get(dockerImageId)
195 if field in ("location", "run", "name") and isinstance(d[field], str):
196 d[field] = rel_ref(d[field], baseuri, urlexpander, merged_map, jobmapper)
199 if field in ("$include", "$import") and isinstance(d[field], str):
200 d[field] = rel_ref(d[field], baseuri, urlexpander, {}, jobmapper)
203 for t in ("type", "items"):
205 isinstance(d[t], str) and
206 not is_basetype(d[t])):
207 d[t] = rel_ref(d[t], baseuri, urlexpander, merged_map, jobmapper)
210 if field == "inputs" and isinstance(d["inputs"], MutableMapping):
211 for inp in d["inputs"]:
212 if isinstance(d["inputs"][inp], str) and not is_basetype(d["inputs"][inp]):
213 d["inputs"][inp] = rel_ref(d["inputs"][inp], baseuri, urlexpander, merged_map, jobmapper)
214 if isinstance(d["inputs"][inp], MutableMapping):
215 update_refs(d["inputs"][inp], baseuri, urlexpander, merged_map, jobmapper, runtimeContext, prefix, replacePrefix)
218 if field == "$schemas":
219 for n, s in enumerate(d["$schemas"]):
220 d["$schemas"][n] = rel_ref(d["$schemas"][n], baseuri, urlexpander, merged_map, jobmapper)
223 update_refs(d[field], baseuri, urlexpander, merged_map, jobmapper, runtimeContext, prefix, replacePrefix)
226 def fix_schemadef(req, baseuri, urlexpander, merged_map, jobmapper, pdh):
227 req = copy.deepcopy(req)
229 for f in req["types"]:
231 path, frag = urllib.parse.urldefrag(r)
232 rel = rel_ref(r, baseuri, urlexpander, merged_map, jobmapper)
233 merged_map.setdefault(path, FileUpdates({}, {}))
234 rename = "keep:%s/%s" %(pdh, rel)
235 for mm in merged_map:
236 merged_map[mm].resolved[r] = rename
241 if isinstance(d, MutableSequence):
242 for i, s in enumerate(d):
244 elif isinstance(d, MutableMapping):
245 if "id" in d and d["id"].startswith("file:"):
252 def upload_workflow(arvRunner, tool, job_order, project_uuid,
255 submit_runner_ram=0, name=None, merged_map=None,
256 submit_runner_image=None,
262 workflow_files = set()
264 include_files = set()
266 # The document loader index will have entries for all the files
267 # that were loaded in the process of parsing the entire workflow
268 # (including subworkflows, tools, imports, etc). We use this to
269 # get compose a list of the workflow file dependencies.
270 for w in tool.doc_loader.idx:
271 if w.startswith("file://"):
272 workflow_files.add(urllib.parse.urldefrag(w)[0])
273 if firstfile is None:
274 firstfile = urllib.parse.urldefrag(w)[0]
275 if w.startswith("import:file://"):
276 import_files.add(urllib.parse.urldefrag(w[7:])[0])
277 if w.startswith("include:file://"):
278 include_files.add(urllib.parse.urldefrag(w[8:])[0])
280 all_files = workflow_files | import_files | include_files
282 # Find the longest common prefix among all the file names. We'll
283 # use this to recreate the directory structure in a keep
284 # collection with correct relative references.
285 prefix = common_prefix(firstfile, all_files)
287 col = arvados.collection.Collection(api_client=arvRunner.api)
289 # Now go through all the files and update references to other
290 # files. We previously scanned for file dependencies, these are
291 # are passed in as merged_map.
293 # note about merged_map: we upload dependencies of each process
294 # object (CommandLineTool/Workflow) to a separate collection.
295 # That way, when the user edits something, this limits collection
296 # PDH changes to just that tool, and minimizes situations where
297 # small changes break container reuse for the whole workflow.
299 for w in workflow_files | import_files:
300 # 1. load the YAML file
302 text = tool.doc_loader.fetch_text(w)
303 if isinstance(text, bytes):
304 textIO = StringIO(text.decode('utf-8'))
306 textIO = StringIO(text)
308 yamlloader = schema_salad.utils.yaml_no_ts()
309 result = yamlloader.load(textIO)
311 # If the whole document is in "flow style" it is probably JSON
312 # formatted. We'll re-export it as JSON because the
313 # ruamel.yaml round-trip mode is a lie and only preserves
314 # "block style" formatting and not "flow style" formatting.
315 export_as_json = result.fa.flow_style()
317 # 2. find $import, $include, $schema, run, location
318 # 3. update field value
319 update_refs(result, w, tool.doc_loader.expand_url, merged_map, jobmapper, runtimeContext, "", "")
321 # Write the updated file to the collection.
322 with col.open(w[len(prefix):], "wt") as f:
324 json.dump(result, f, indent=4, separators=(',',': '))
326 yamlloader.dump(result, stream=f)
328 # Also store a verbatim copy of the original files
329 with col.open(os.path.join("original", w[len(prefix):]), "wt") as f:
333 # Upload files referenced by $include directives, these are used
334 # unchanged and don't need to be updated.
335 for w in include_files:
336 with col.open(w[len(prefix):], "wb") as f1:
337 with col.open(os.path.join("original", w[len(prefix):]), "wb") as f3:
338 with open(uri_file_path(w), "rb") as f2:
345 # Now collect metadata: the collection name and git properties.
347 toolname = tool.tool.get("label") or tool.metadata.get("label") or os.path.basename(tool.tool["id"])
348 if git_info and git_info.get("http://arvados.org/cwl#gitDescribe"):
349 toolname = "%s (%s)" % (toolname, git_info.get("http://arvados.org/cwl#gitDescribe"))
351 toolfile = tool.tool["id"][len(prefix):]
355 "arv:workflowMain": toolfile,
360 p = g.split("#", 1)[1]
361 properties["arv:"+p] = git_info[g]
363 # Check if a collection with the same content already exists in the target project. If so, just use that one.
364 existing = arvRunner.api.collections().list(filters=[["portable_data_hash", "=", col.portable_data_hash()],
365 ["owner_uuid", "=", arvRunner.project_uuid]]).execute(num_retries=arvRunner.num_retries)
367 if len(existing["items"]) == 0:
368 toolname = toolname.replace("/", " ")
369 col.save_new(name=toolname, owner_uuid=arvRunner.project_uuid, ensure_unique_name=True, properties=properties)
370 logger.info("Workflow uploaded to %s", col.manifest_locator())
372 logger.info("Workflow uploaded to %s", existing["items"][0]["uuid"])
374 # Now that we've updated the workflow and saved it to a
375 # collection, we're going to construct a minimal "wrapper"
376 # workflow which consists of only of input and output parameters
377 # connected to a single step that runs the real workflow.
379 runfile = "keep:%s/%s" % (col.portable_data_hash(), toolfile)
382 "id": "#main/" + toolname,
391 wf_runner_resources = None
393 hints = main.get("hints", [])
396 if h["class"] == "http://arvados.org/cwl#WorkflowRunnerResources":
397 wf_runner_resources = h
401 wf_runner_resources = {"class": "http://arvados.org/cwl#WorkflowRunnerResources"}
402 hints.append(wf_runner_resources)
404 wf_runner_resources["acrContainerImage"] = arvados_jobs_image(arvRunner,
405 submit_runner_image or "arvados/jobs:"+__version__,
408 if submit_runner_ram:
409 wf_runner_resources["ramMin"] = submit_runner_ram
411 # Remove a few redundant fields from the "job order" (aka input
412 # object or input parameters). In the situation where we're
413 # creating or updating a workflow record, any values in the job
414 # order get copied over as default values for input parameters.
415 adjustDirObjs(job_order, trim_listing)
416 adjustFileObjs(job_order, trim_anonymous_location)
417 adjustDirObjs(job_order, trim_anonymous_location)
420 for i in main["inputs"]:
422 # Make sure to only copy known fields that are meaningful at
423 # the workflow level. In practice this ensures that if we're
424 # wrapping a CommandLineTool we don't grab inputBinding.
425 # Right now also excludes extension fields, which is fine,
426 # Arvados doesn't currently look for any extension fields on
428 for f in ("type", "label", "secondaryFiles", "streamable",
429 "doc", "format", "loadContents",
430 "loadListing", "default"):
435 sn = shortname(i["id"])
437 inp["default"] = job_order[sn]
439 inp["id"] = "#main/%s" % shortname(i["id"])
440 newinputs.append(inp)
450 for i in main["inputs"]:
452 "id": "#main/step/%s" % shortname(i["id"]),
453 "source": "#main/%s" % shortname(i["id"])
456 for i in main["outputs"]:
457 step["out"].append({"id": "#main/step/%s" % shortname(i["id"])})
458 wrapper["outputs"].append({"outputSource": "#main/step/%s" % shortname(i["id"]),
460 "id": "#main/%s" % shortname(i["id"])})
462 wrapper["requirements"] = [{"class": "SubworkflowFeatureRequirement"}]
464 if main.get("requirements"):
465 wrapper["requirements"].extend(main["requirements"])
467 wrapper["hints"] = hints
469 # Schema definitions (this lets you define things like record
470 # types) require a special handling.
472 for i, r in enumerate(wrapper["requirements"]):
473 if r["class"] == "SchemaDefRequirement":
474 wrapper["requirements"][i] = fix_schemadef(r, main["id"], tool.doc_loader.expand_url, merged_map, jobmapper, col.portable_data_hash())
476 update_refs(wrapper, main["id"], tool.doc_loader.expand_url, merged_map, jobmapper, runtimeContext, main["id"]+"#", "#main/")
478 doc = {"cwlVersion": "v1.2", "$graph": [wrapper]}
484 # Remove any lingering file references.
490 def make_workflow_record(arvRunner, doc, name, tool, project_uuid, update_uuid):
492 wrappertext = json.dumps(doc, sort_keys=True, indent=4, separators=(',',': '))
497 "description": tool.tool.get("doc", ""),
498 "definition": wrappertext
501 body["workflow"]["owner_uuid"] = project_uuid
504 call = arvRunner.api.workflows().update(uuid=update_uuid, body=body)
506 call = arvRunner.api.workflows().create(body=body)
507 return call.execute(num_retries=arvRunner.num_retries)["uuid"]
510 def dedup_reqs(reqs):
512 for r in reversed(reqs):
513 if r["class"] not in dedup and not r["class"].startswith("http://arvados.org/cwl#"):
514 dedup[r["class"]] = r
515 return [dedup[r] for r in sorted(dedup.keys())]
517 def get_overall_res_req(res_reqs):
518 """Take the overall of a list of ResourceRequirement,
519 i.e., the max of coresMin, coresMax, ramMin, ramMax, tmpdirMin, tmpdirMax
520 and the sum of outdirMin, outdirMax."""
524 for a in max_res_pars + sum_res_pars:
526 for res_req in res_reqs:
528 if isinstance(res_req[a], int): # integer check
529 all_res_req[a].append(res_req[a])
531 msg = SourceLine(res_req, a).makeError(
532 "Non-top-level ResourceRequirement in single container cannot have expressions")
533 exception_msgs.append(msg)
535 raise WorkflowException("\n".join(exception_msgs))
538 for a in all_res_req:
540 if a in max_res_pars:
541 overall_res_req[a] = max(all_res_req[a])
542 elif a in sum_res_pars:
543 overall_res_req[a] = sum(all_res_req[a])
545 overall_res_req["class"] = "ResourceRequirement"
546 return cmap(overall_res_req)
548 class ArvadosWorkflowStep(WorkflowStep):
550 toolpath_object, # type: Dict[Text, Any]
552 loadingContext, # type: LoadingContext
556 ): # type: (...) -> None
558 if arvrunner.fast_submit:
559 self.tool = toolpath_object
560 self.tool["inputs"] = []
561 self.tool["outputs"] = []
563 super(ArvadosWorkflowStep, self).__init__(toolpath_object, pos, loadingContext, *argc, **argv)
564 self.tool["class"] = "WorkflowStep"
565 self.arvrunner = arvrunner
567 def job(self, joborder, output_callback, runtimeContext):
568 runtimeContext = runtimeContext.copy()
569 runtimeContext.toplevel = True # Preserve behavior for #13365
571 builder = make_builder({shortname(k): v for k,v in viewitems(joborder)}, self.hints, self.requirements,
572 runtimeContext, self.metadata)
573 runtimeContext = set_cluster_target(self.tool, self.arvrunner, builder, runtimeContext)
574 return super(ArvadosWorkflowStep, self).job(joborder, output_callback, runtimeContext)
577 class ArvadosWorkflow(Workflow):
578 """Wrap cwltool Workflow to override selected methods."""
580 def __init__(self, arvrunner, toolpath_object, loadingContext):
581 self.arvrunner = arvrunner
583 self.dynamic_resource_req = []
584 self.static_resource_req = []
585 self.wf_reffiles = []
586 self.loadingContext = loadingContext
587 super(ArvadosWorkflow, self).__init__(toolpath_object, loadingContext)
588 self.cluster_target_req, _ = self.get_requirement("http://arvados.org/cwl#ClusterTarget")
590 def job(self, joborder, output_callback, runtimeContext):
592 builder = make_builder(joborder, self.hints, self.requirements, runtimeContext, self.metadata)
593 runtimeContext = set_cluster_target(self.tool, self.arvrunner, builder, runtimeContext)
595 req, _ = self.get_requirement("http://arvados.org/cwl#RunInSingleContainer")
597 return super(ArvadosWorkflow, self).job(joborder, output_callback, runtimeContext)
599 # RunInSingleContainer is true
601 with SourceLine(self.tool, None, WorkflowException, logger.isEnabledFor(logging.DEBUG)):
602 if "id" not in self.tool:
603 raise WorkflowException("%s object must have 'id'" % (self.tool["class"]))
605 discover_secondary_files(self.arvrunner.fs_access, builder,
606 self.tool["inputs"], joborder)
608 normalizeFilesDirs(joborder)
610 with Perf(metrics, "subworkflow upload_deps"):
611 upload_dependencies(self.arvrunner,
612 os.path.basename(joborder.get("id", "#")),
615 joborder.get("id", "#"),
618 if self.wf_pdh is None:
619 packed = pack(self.loadingContext, self.tool["id"], loader=self.doc_loader)
621 for p in packed["$graph"]:
622 if p["id"] == "#main":
623 p["requirements"] = dedup_reqs(self.requirements)
624 p["hints"] = dedup_reqs(self.hints)
627 if "requirements" in item:
628 item["requirements"] = [i for i in item["requirements"] if i["class"] != "DockerRequirement"]
629 for t in ("hints", "requirements"):
633 if req["class"] == "ResourceRequirement":
635 for k in max_res_pars + sum_res_pars:
637 if isinstance(req[k], basestring):
638 if item["id"] == "#main":
639 # only the top-level requirements/hints may contain expressions
640 self.dynamic_resource_req.append(req)
644 with SourceLine(req, k, WorkflowException):
645 raise WorkflowException("Non-top-level ResourceRequirement in single container cannot have expressions")
647 self.static_resource_req.append(req)
649 visit_class(packed["$graph"], ("Workflow", "CommandLineTool"), visit)
651 if self.static_resource_req:
652 self.static_resource_req = [get_overall_res_req(self.static_resource_req)]
654 upload_dependencies(self.arvrunner,
661 # Discover files/directories referenced by the
662 # workflow (mainly "default" values)
663 visit_class(packed, ("File", "Directory"), self.wf_reffiles.append)
666 if self.dynamic_resource_req:
667 # Evaluate dynamic resource requirements using current builder
668 rs = copy.copy(self.static_resource_req)
669 for dyn_rs in self.dynamic_resource_req:
670 eval_req = {"class": "ResourceRequirement"}
671 for a in max_res_pars + sum_res_pars:
673 eval_req[a] = builder.do_eval(dyn_rs[a])
675 job_res_reqs = [get_overall_res_req(rs)]
677 job_res_reqs = self.static_resource_req
679 with Perf(metrics, "subworkflow adjust"):
680 joborder_resolved = copy.deepcopy(joborder)
681 joborder_keepmount = copy.deepcopy(joborder)
684 visit_class(joborder_keepmount, ("File", "Directory"), reffiles.append)
686 mapper = ArvPathMapper(self.arvrunner, reffiles+self.wf_reffiles, runtimeContext.basedir,
690 # For containers API, we need to make sure any extra
691 # referenced files (ie referenced by the workflow but
692 # not in the inputs) are included in the mounts.
694 runtimeContext = runtimeContext.copy()
695 runtimeContext.extra_reffiles = copy.deepcopy(self.wf_reffiles)
698 remove_redundant_fields(obj)
699 with SourceLine(obj, None, WorkflowException, logger.isEnabledFor(logging.DEBUG)):
700 if "location" not in obj:
701 raise WorkflowException("%s object is missing required 'location' field: %s" % (obj["class"], obj))
702 with SourceLine(obj, "location", WorkflowException, logger.isEnabledFor(logging.DEBUG)):
703 if obj["location"].startswith("keep:"):
704 obj["location"] = mapper.mapper(obj["location"]).target
707 elif obj["location"].startswith("_:"):
710 raise WorkflowException("Location is not a keep reference or a literal: '%s'" % obj["location"])
712 visit_class(joborder_keepmount, ("File", "Directory"), keepmount)
715 if obj["location"].startswith("keep:"):
716 obj["location"] = mapper.mapper(obj["location"]).resolved
718 visit_class(joborder_resolved, ("File", "Directory"), resolved)
720 if self.wf_pdh is None:
721 adjustFileObjs(packed, keepmount)
722 adjustDirObjs(packed, keepmount)
723 self.wf_pdh = upload_workflow_collection(self.arvrunner, shortname(self.tool["id"]), packed, runtimeContext)
725 self.loadingContext = self.loadingContext.copy()
726 self.loadingContext.metadata = self.loadingContext.metadata.copy()
727 self.loadingContext.metadata["http://commonwl.org/cwltool#original_cwlVersion"] = "v1.0"
729 if len(job_res_reqs) == 1:
730 # RAM request needs to be at least 128 MiB or the workflow
731 # runner itself won't run reliably.
732 if job_res_reqs[0].get("ramMin", 1024) < 128:
733 job_res_reqs[0]["ramMin"] = 128
735 arguments = ["--no-container", "--move-outputs", "--preserve-entire-environment", "workflow.cwl", "cwl.input.yml"]
736 if runtimeContext.debug:
737 arguments.insert(0, '--debug')
740 "class": "CommandLineTool",
741 "baseCommand": "cwltool",
742 "inputs": self.tool["inputs"],
743 "outputs": self.tool["outputs"],
744 "stdout": "cwl.output.json",
745 "requirements": self.requirements+job_res_reqs+[
746 {"class": "InlineJavascriptRequirement"},
748 "class": "InitialWorkDirRequirement",
750 "entryname": "workflow.cwl",
751 "entry": '$({"class": "File", "location": "keep:%s/workflow.cwl"})' % self.wf_pdh
753 "entryname": "cwl.input.yml",
754 "entry": json.dumps(joborder_keepmount, indent=2, sort_keys=True, separators=(',',': ')).replace("\\", "\\\\").replace('$(', '\$(').replace('${', '\${')
758 "arguments": arguments,
761 return ArvadosCommandTool(self.arvrunner, wf_runner, self.loadingContext).job(joborder_resolved, output_callback, runtimeContext)
763 def make_workflow_step(self,
764 toolpath_object, # type: Dict[Text, Any]
766 loadingContext, # type: LoadingContext
770 # (...) -> WorkflowStep
771 return ArvadosWorkflowStep(toolpath_object, pos, loadingContext, self.arvrunner, *argc, **argv)